From fa1bef7a19ed458b5243e71d3bf2fd0dc00e99ba Mon Sep 17 00:00:00 2001
From: florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Date: Thu, 20 Nov 2008 21:26:11 +0000
Subject: Prevent the MTD map to fail, somehow detect_cfe will read the tag
 plus some garbage, therefore making a simple strcmp will fail

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13299 3c298f89-4303-0410-b956-a3cf2f4a3e73
---
 target/linux/brcm63xx/files/drivers/mtd/maps/bcm963xx-flash.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'target/linux/brcm63xx/files/drivers/mtd/maps/bcm963xx-flash.c')

diff --git a/target/linux/brcm63xx/files/drivers/mtd/maps/bcm963xx-flash.c b/target/linux/brcm63xx/files/drivers/mtd/maps/bcm963xx-flash.c
index 9543c172a..dc1508b6f 100644
--- a/target/linux/brcm63xx/files/drivers/mtd/maps/bcm963xx-flash.c
+++ b/target/linux/brcm63xx/files/drivers/mtd/maps/bcm963xx-flash.c
@@ -184,7 +184,7 @@ static int bcm963xx_detect_cfe(struct mtd_info *master)
        ret = master->read(master, idoffset, 8, &retlen, (void *)buf);
        buf[retlen] = 0;
        printk("bcm963xx: Read Signature value of %s\n", buf);
-       return strncmp(idstring,buf,8);
+       return strncmp(idstring, buf, 8);
 }
 
 static int __init bcm963xx_mtd_init(void)
-- 
cgit v1.2.3