diff options
author | Florian Fainelli <florian@openwrt.org> | 2013-05-01 21:12:26 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2013-05-01 21:12:26 +0000 |
commit | 6f48ccea0279423b68c47488d090b45105afe740 (patch) | |
tree | 0cdd37304fd9989816e0dcf3c75c9911f6c8edc9 /target/linux/brcm63xx/patches-3.7/101-MTD-bcm63xxpart-remove-unused-variable.patch | |
parent | 292493f74dfc3a87daf7d9d49ac9623df1c7181a (diff) | |
download | mtk-20170518-6f48ccea0279423b68c47488d090b45105afe740.zip mtk-20170518-6f48ccea0279423b68c47488d090b45105afe740.tar.gz mtk-20170518-6f48ccea0279423b68c47488d090b45105afe740.tar.bz2 |
brcm63xx: remove 3.7 kernel support
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 36504
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, 0 insertions, 41 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 deleted file mode 100644 index 470f966..0000000 --- a/target/linux/brcm63xx/patches-3.7/101-MTD-bcm63xxpart-remove-unused-variable.patch +++ /dev/null @@ -1,41 +0,0 @@ -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); |