[U-Boot] [PATCH] VCMA9: fix compile errors

Wolfgang Denk wd at denx.de
Sun Mar 29 01:01:56 CET 2009


Fix these:
cmd_vcma9.c:82: warning: implicit declaration of function 'eth_getenv_enetaddr'
cmd_vcma9.c:89: error: 'enetaddr' undeclared (first use in this function)

Signed-off-by: Wolfgang Denk <wd at denx.de>
---
 board/mpl/vcma9/cmd_vcma9.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/board/mpl/vcma9/cmd_vcma9.c b/board/mpl/vcma9/cmd_vcma9.c
index 7d2aa3c..cbe7fe2 100644
--- a/board/mpl/vcma9/cmd_vcma9.c
+++ b/board/mpl/vcma9/cmd_vcma9.c
@@ -27,6 +27,7 @@
 
 #include <common.h>
 #include <command.h>
+#include <net.h>
 #include "vcma9.h"
 #include "../common/common_util.h"
 
@@ -86,8 +87,8 @@ int do_vcma9(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 				csum = cs8900_chksum(data);
 				addr++;
 				for (i = 0; i < 6; i+=2) {
-					data = enetaddr[i+1] << 8 |
-					       enetaddr[i];
+					data = ethaddr[i+1] << 8 |
+					       ethaddr[i];
 					cs8900_e2prom_write(addr, data);
 					csum += cs8900_chksum(data);
 					addr++;
-- 
1.6.0.6



More information about the U-Boot mailing list