summaryrefslogtreecommitdiffstats
path: root/include/command.h
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:33 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:33 +0200
commit6a73e1ac6cf94d3d2fa953f5f0a5e7d1d9b1b661 (patch)
tree3160ee91d938712c95c32cd3ed21660aa5bb7511 /include/command.h
parentf330d101331be12a8552abf6888d0fa3f43cbca8 (diff)
downloadbarebox-6a73e1ac6cf94d3d2fa953f5f0a5e7d1d9b1b661.tar.gz
barebox-6a73e1ac6cf94d3d2fa953f5f0a5e7d1d9b1b661.tar.xz
svn_rev_216
CFG_LONGHELP -> CONFIG_LONGHELP
Diffstat (limited to 'include/command.h')
-rw-r--r--include/command.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/command.h b/include/command.h
index a2936ad8b3..dcde4de814 100644
--- a/include/command.h
+++ b/include/command.h
@@ -43,7 +43,7 @@ struct cmd_tbl_s {
/* Implementation function */
int (*cmd)(struct cmd_tbl_s *, int, int, char *[]);
char *usage; /* Usage message (short) */
-#ifdef CFG_LONGHELP
+#ifdef CONFIG_LONGHELP
char *help; /* Help message (long) */
#endif
#ifdef CONFIG_AUTO_COMPLETE
@@ -92,7 +92,7 @@ typedef void command_t (cmd_tbl_t *, int, int, char *[]);
#define Struct_Section __attribute__ ((unused,section (".u_boot_cmd")))
-#ifdef CFG_LONGHELP
+#ifdef CONFIG_LONGHELP
#define U_BOOT_CMD(name,maxargs,rep,cmd,usage,help) \
cmd_tbl_t __u_boot_cmd_##name Struct_Section = {#name, maxargs, rep, cmd, usage, help}
@@ -102,6 +102,6 @@ cmd_tbl_t __u_boot_cmd_##name Struct_Section = {#name, maxargs, rep, cmd, usage,
#define U_BOOT_CMD(name,maxargs,rep,cmd,usage,help) \
cmd_tbl_t __u_boot_cmd_##name Struct_Section = {#name, maxargs, rep, cmd, usage}
-#endif /* CFG_LONGHELP */
+#endif /* CONFIG_LONGHELP */
#endif /* __COMMAND_H */