diff options
| author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-11-26 08:40:46 +0000 | 
|---|---|---|
| committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-11-26 08:40:46 +0000 | 
| commit | 878a707c0f2b89c92f6cd6d678449ec68f2e9119 (patch) | |
| tree | 6ec610cfc991683b7e93b3ab6b1683de935abe52 | |
| parent | 61f88f1d0a29e71619315387c26645c4615f9ea5 (diff) | |
[ar71xx] fix AP83 boot failure
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13356 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/prom.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c b/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c index cd6f26cda..ad6a3a49d 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c @@ -46,6 +46,9 @@ static struct board_rec boards[] __initdata = {  	}, {  		.name		= "AW-NR580",  		.mach_type	= MACH_AR71XX_AW_NR580, +	}, { +		.name		= "AP83", +		.mach_type	= MACH_AR71XX_AP83,  	}  }; @@ -59,6 +62,10 @@ static __init char *ar71xx_prom_getargv(const char *name)  	for (i = 0; i < ar71xx_prom_argc; i++) {  		char *argv = ar71xx_prom_argv[i]; + +		if (!argv) +			continue; +  		if (strncmp(name, argv, len) == 0 && (argv)[len] == '=')  			return argv + len + 1;  	} | 
