diff options
author | Wolfgang Denk <wd@denx.de> | 2010-10-26 23:42:23 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-10-27 20:13:46 +0200 |
commit | ec5c04cdb59e2f194a4ab2336fd2ffd6fcef3c35 (patch) | |
tree | 683951cb6901dffb705f218989d92de2d585fd41 | |
parent | 8343f8a76434b7162cf5a4da5f456b014868853c (diff) | |
download | u-boot-ec5c04cdb59e2f194a4ab2336fd2ffd6fcef3c35.zip u-boot-ec5c04cdb59e2f194a4ab2336fd2ffd6fcef3c35.tar.gz u-boot-ec5c04cdb59e2f194a4ab2336fd2ffd6fcef3c35.tar.bz2 |
Revert "cmd_net: drop spurious comma in U_BOOT_CMD"
This commit causes build errors like this:
cmd_net.c:301:1: error: macro "U_BOOT_CMD" requires 6 arguments, but only 5 given
cmd_net.c:298: warning: data definition has no type or storage class
cmd_net.c:298: warning: type defaults to 'int' in declaration of 'U_BOOT_CMD'
This reverts commit 8f4cb77ef7183ce1bb3f767604a0677c6f6d84a7.
-rw-r--r-- | common/cmd_net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_net.c b/common/cmd_net.c index b131006..44d17db 100644 --- a/common/cmd_net.c +++ b/common/cmd_net.c @@ -297,7 +297,7 @@ int do_cdp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) U_BOOT_CMD( cdp, 1, 1, do_cdp, - "Perform CDP network configuration" + "Perform CDP network configuration", ); #endif |