All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] cmd_net: drop spurious comma in U_BOOT_CMD
@ 2010-10-20  7:33 Mike Frysinger
  2010-10-26 19:15 ` Wolfgang Denk
  0 siblings, 1 reply; 4+ messages in thread
From: Mike Frysinger @ 2010-10-20  7:33 UTC (permalink / raw)
  To: u-boot

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 |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/common/cmd_net.c b/common/cmd_net.c
index 44d17db..b131006 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
 
-- 
1.7.3.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-10-27  0:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-10-20  7:33 [U-Boot] [PATCH] cmd_net: drop spurious comma in U_BOOT_CMD Mike Frysinger
2010-10-26 19:15 ` Wolfgang Denk
2010-10-26 21:45   ` Wolfgang Denk
2010-10-27  0:45     ` Mike Frysinger

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.