diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-02-04 10:19:50 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-02-04 10:19:50 +0000 |
commit | 3b4fced67dad0b733d77f78205cfecfc0d654695 (patch) | |
tree | a672ce6b4f937cdff5c23c4d96583c95c6357b9e /target/linux/brcm63xx/patches-3.7/101-MTD-bcm63xxpart-remove-unused-variable.patch | |
parent | 0e9365b3462d456baba85cad7269c85b0d0f7d8a (diff) | |
download | upstream-3b4fced67dad0b733d77f78205cfecfc0d654695.tar.gz upstream-3b4fced67dad0b733d77f78205cfecfc0d654695.tar.bz2 upstream-3b4fced67dad0b733d77f78205cfecfc0d654695.zip |
bcm63xx: add support for linux 3.7
Based on 3.7.6.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 35481
Diffstat (limited to 'target/linux/brcm63xx/patches-3.7/101-MTD-bcm63xxpart-remove-unused-variable.patch')
-rw-r--r-- | target/linux/brcm63xx/patches-3.7/101-MTD-bcm63xxpart-remove-unused-variable.patch | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/patches-3.7/101-MTD-bcm63xxpart-remove-unused-variable.patch b/target/linux/brcm63xx/patches-3.7/101-MTD-bcm63xxpart-remove-unused-variable.patch new file mode 100644 index 0000000000..470f966635 --- /dev/null +++ b/target/linux/brcm63xx/patches-3.7/101-MTD-bcm63xxpart-remove-unused-variable.patch @@ -0,0 +1,41 @@ +From 2962bbe9cc807549c0705551c5b7be47e34e3fac Mon Sep 17 00:00:00 2001 +From: Jonas Gorski <jonas.gorski@gmail.com> +Date: Mon, 30 Apr 2012 09:32:56 +0200 +Subject: [PATCH 20/79] MTD: bcm63xxpart: remove unused variable + +namelen is never used, so drop it. + +Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com> +--- + drivers/mtd/bcm63xxpart.c | 11 +++-------- + 1 file changed, 3 insertions(+), 8 deletions(-) + +--- a/drivers/mtd/bcm63xxpart.c ++++ b/drivers/mtd/bcm63xxpart.c +@@ -79,7 +79,6 @@ static int bcm63xx_parse_cfe_partitions( + unsigned int rootfsaddr, kerneladdr, spareaddr; + unsigned int rootfslen, kernellen, sparelen, totallen; + unsigned int cfelen, nvramlen; +- int namelen = 0; + int i; + u32 computed_crc; + bool rootfs_first = false; +@@ -143,15 +142,11 @@ static int bcm63xx_parse_cfe_partitions( + } + + /* Determine number of partitions */ +- namelen = 8; +- if (rootfslen > 0) { ++ if (rootfslen > 0) + nrparts++; +- namelen += 6; +- } +- if (kernellen > 0) { ++ ++ if (kernellen > 0) + nrparts++; +- namelen += 6; +- } + + /* Ask kernel for more memory */ + parts = kzalloc(sizeof(*parts) * nrparts + 10 * nrparts, GFP_KERNEL); |