From: Wolfgang Denk Date: Sat, 5 Nov 2011 05:13:10 +0000 (+0000) Subject: board/hymod/input.c: Fix GCC 4.6 build warning X-Git-Tag: v2011.12-rc1~240 X-Git-Url: https://git.kernelconcepts.de/?a=commitdiff_plain;h=48fddf6aeba6432891c142ecd716105b12a373aa;p=karo-tx-uboot.git board/hymod/input.c: Fix GCC 4.6 build warning Fix: input.c: In function 'hymod_get_ethaddr': input.c:79:10: warning: variable 'ea' set but not used [-Wunused-but-set-variable] Signed-off-by: Wolfgang Denk Cc: Murray Jensen --- diff --git a/board/hymod/input.c b/board/hymod/input.c index 998132d659..1a2b8d23a7 100644 --- a/board/hymod/input.c +++ b/board/hymod/input.c @@ -76,7 +76,6 @@ hymod_get_ethaddr (void) if (n == 17) { int i; char *p, *q; - uchar ea[6]; /* see if it looks like an ethernet address */ @@ -85,7 +84,7 @@ hymod_get_ethaddr (void) for (i = 0; i < 6; i++) { char term = (i == 5 ? '\0' : ':'); - ea[i] = simple_strtol (p, &q, 16); + (void)simple_strtol (p, &q, 16); if ((q - p) != 2 || *q++ != term) break;