]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
cmd_net: drop spurious comma in U_BOOT_CMD
authorMike Frysinger <vapier@gentoo.org>
Wed, 20 Oct 2010 07:33:30 +0000 (03:33 -0400)
committerWolfgang Denk <wd@denx.de>
Tue, 26 Oct 2010 19:14:55 +0000 (21:14 +0200)
Building for boards that have CONFIG_CMD_CDP enabled fail with:
cmd_net.c:301: error: expected expression before ',' token

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
common/cmd_net.c

index 44d17db19c5fd28dae8e8771a8eb64f1181f303c..b1310069647b5b92568a2673fc749f0f1a37239a 100644 (file)
@@ -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