diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-02-10 20:19:06 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-02-10 20:19:06 +0000 |
commit | 8686954917cdb56e2c3e096cdbbc198e5782b289 (patch) | |
tree | 4e5f21de9f19b1385c23dc886893fc7a44311db6 /target/linux/ar71xx/patches-3.3 | |
parent | 0822eb50cf9cdb078cdd7d4b8a54f2e63f5a71d3 (diff) | |
download | upstream-8686954917cdb56e2c3e096cdbbc198e5782b289.tar.gz upstream-8686954917cdb56e2c3e096cdbbc198e5782b289.tar.bz2 upstream-8686954917cdb56e2c3e096cdbbc198e5782b289.zip |
ar71xx: zero partition parser data in m25p80
Ths fixes parsing of RedBoot partitions.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30427 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/patches-3.3')
-rw-r--r-- | target/linux/ar71xx/patches-3.3/412-mtd-m25p80-zero-partition-parser-data.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/target/linux/ar71xx/patches-3.3/412-mtd-m25p80-zero-partition-parser-data.patch b/target/linux/ar71xx/patches-3.3/412-mtd-m25p80-zero-partition-parser-data.patch new file mode 100644 index 0000000000..a32a19629c --- /dev/null +++ b/target/linux/ar71xx/patches-3.3/412-mtd-m25p80-zero-partition-parser-data.patch @@ -0,0 +1,10 @@ +--- a/drivers/mtd/devices/m25p80.c ++++ b/drivers/mtd/devices/m25p80.c +@@ -977,6 +977,7 @@ static int __devinit m25p_probe(struct s + if (info->flags & M25P_NO_ERASE) + flash->mtd.flags |= MTD_NO_ERASE; + ++ memset(&ppdata, '\0', sizeof(ppdata)); + ppdata.of_node = spi->dev.of_node; + flash->mtd.dev.parent = &spi->dev; + flash->page_size = info->page_size; |