From: Mike Frysinger Date: Wed, 20 Oct 2010 07:33:30 +0000 (-0400) Subject: cmd_net: drop spurious comma in U_BOOT_CMD X-Git-Tag: v2010.12-rc1~14 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8f4cb77ef7183ce1bb3f767604a0677c6f6d84a7;p=u-boot cmd_net: drop spurious comma in U_BOOT_CMD 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 --- diff --git a/common/cmd_net.c b/common/cmd_net.c index 44d17db19c..b131006964 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