From ad7de18fa7ee36a50f61c33ed1d4a47ed56062f9 Mon Sep 17 00:00:00 2001 From: Thomas Langer Date: Thu, 20 Nov 2008 19:04:00 +0000 Subject: [PATCH] [ifxmips] fix error from last commit SVN-Revision: 13296 --- target/linux/ifxmips/files/arch/mips/ifxmips/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/ifxmips/files/arch/mips/ifxmips/board.c b/target/linux/ifxmips/files/arch/mips/ifxmips/board.c index d8f1907614..937737968c 100644 --- a/target/linux/ifxmips/files/arch/mips/ifxmips/board.c +++ b/target/linux/ifxmips/files/arch/mips/ifxmips/board.c @@ -258,7 +258,7 @@ static int __init ifxmips_set_ethaddr(char *str) goto out; if ((i != 5) && (str[(3 * i) + 2] != ':')) goto out; - ifxmips_ethaddr[i] = strict_strtoul(&str[3 * i], NULL, 16); + ifxmips_ethaddr[i] = simple_strtoul(&str[3 * i], NULL, 16); } if (is_valid_ether_addr(ifxmips_ethaddr)) cmdline_mac = 1; -- 2.30.2