From ae4ea6478720626624588be9cdaccba838aee07a Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Wed, 26 Nov 2008 08:40:46 +0000 Subject: [PATCH] [ar71xx] fix AP83 boot failure SVN-Revision: 13356 --- target/linux/ar71xx/files/arch/mips/ar71xx/prom.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c b/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c index cd6f26cdac..ad6a3a49dd 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; } -- 2.30.2