diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-10-16 15:01:15 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:03 +0200 | 
| commit | 6d0f6bcf337c5261c08fabe12982178c2c489d76 (patch) | |
| tree | ae13958ffa9c6b58c2ea97aac07a4ad2f04a350f /include/command.h | |
| parent | 71edc271816ec82cf0550dd6980be2da3cc2ad9e (diff) | |
| download | olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.tar.xz olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.zip | |
rename CFG_ macros to CONFIG_SYS
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'include/command.h')
| -rw-r--r-- | include/command.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/include/command.h b/include/command.h index 78feea5c7..a8a153cb0 100644 --- a/include/command.h +++ b/include/command.h @@ -45,7 +45,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_SYS_LONGHELP  	char		*help;		/* Help  message	(long)	*/  #endif  #ifdef CONFIG_AUTO_COMPLETE @@ -98,7 +98,7 @@ extern int cmd_get_data_size(char* arg, int default_size);  #define Struct_Section  __attribute__ ((unused,section (".u_boot_cmd"))) -#ifdef  CFG_LONGHELP +#ifdef  CONFIG_SYS_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} @@ -114,6 +114,6 @@ cmd_tbl_t __u_boot_cmd_##name Struct_Section = {#name, maxargs, rep, cmd, usage}  #define U_BOOT_CMD_MKENT(name,maxargs,rep,cmd,usage,help) \  {#name, maxargs, rep, cmd, usage} -#endif	/* CFG_LONGHELP */ +#endif	/* CONFIG_SYS_LONGHELP */  #endif	/* __COMMAND_H */ |