Skip to content
Snippets Groups Projects
Commit 48fddf6a authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

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: default avatarWolfgang Denk <wd@denx.de>
Cc: Murray Jensen <Murray.Jensen@csiro.au>
parent 419abb6a
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment