summaryrefslogtreecommitdiffstats
path: root/board/hymod
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2011-11-05 05:13:10 +0000
committerWolfgang Denk <wd@denx.de>2011-11-07 22:48:02 +0100
commit48fddf6aeba6432891c142ecd716105b12a373aa (patch)
tree671606165fa91bb4ee0e8b649bc43b6cc74388cc /board/hymod
parent419abb6af6e627196d68172dbb4c681fdac041e6 (diff)
downloadblackbird-obmc-uboot-48fddf6aeba6432891c142ecd716105b12a373aa.tar.gz
blackbird-obmc-uboot-48fddf6aeba6432891c142ecd716105b12a373aa.zip
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 <wd@denx.de> Cc: Murray Jensen <Murray.Jensen@csiro.au>
Diffstat (limited to 'board/hymod')
-rw-r--r--board/hymod/input.c3
1 files changed, 1 insertions, 2 deletions
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;
OpenPOWER on IntegriCloud