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 <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger 2010-10-20 03:33:30 -04:00 committed by Wolfgang Denk
parent ea34c9d6ed
commit 8f4cb77ef7

View 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