From 1d55b67ff96d3a1a9bb786ec78250134d4ab5c81 Mon Sep 17 00:00:00 2001 From: florian Date: Sat, 15 Nov 2008 11:30:22 +0000 Subject: This patch is for broadcom 96348GW-11 boards, to get USB and Ethernet working. Also it patches mtd map driver for bcm96xx boards to be sure that CFE1CFE1 code is detected when booting from CFE. (#4201) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13213 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/brcm63xx/files/drivers/mtd/maps/bcm963xx-flash.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'target/linux/brcm63xx/files/drivers') 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 504dfac84..9543c172a 100644 --- a/target/linux/brcm63xx/files/drivers/mtd/maps/bcm963xx-flash.c +++ b/target/linux/brcm63xx/files/drivers/mtd/maps/bcm963xx-flash.c @@ -177,13 +177,14 @@ static int bcm963xx_detect_cfe(struct mtd_info *master) { int idoffset = 0x4e0; static char idstring[8] = "CFE1CFE1"; - char buf[8]; + char buf[9]; int ret; size_t retlen; ret = master->read(master, idoffset, 8, &retlen, (void *)buf); + buf[retlen] = 0; printk("bcm963xx: Read Signature value of %s\n", buf); - return strcmp(idstring,buf); + return strncmp(idstring,buf,8); } static int __init bcm963xx_mtd_init(void) -- cgit v1.2.3