mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-18 06:58:54 +00:00
VCMA9: fix compile errors
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@denx.de>
This commit is contained in:
parent
26e42cbd78
commit
88685b5f62
1 changed files with 3 additions and 2 deletions
|
@ -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++;
|
||||
|
|
Loading…
Add table
Reference in a new issue