diff options
| author | Ben Warren <bwarren@qstreams.com> | 2007-08-13 21:26:03 -0400 | 
|---|---|---|
| committer | Ben Warren <bwarren@qstreams.com> | 2007-08-13 21:26:03 -0400 | 
| commit | d1bc6c8d5f4a9c7ca9fb2292d5c65f846dcc3995 (patch) | |
| tree | dd0722cee4758fe40f6a5cc75986ebb1a395aac2 /common/command.c | |
| parent | f539edc076cfe52bff919dd512ba8d7af0e22092 (diff) | |
| parent | 8a92b7c60b40ff79e2cc96e13aeac2a531dde473 (diff) | |
| download | olio-uboot-2014.01-d1bc6c8d5f4a9c7ca9fb2292d5c65f846dcc3995.tar.xz olio-uboot-2014.01-d1bc6c8d5f4a9c7ca9fb2292d5c65f846dcc3995.zip  | |
Sync'd u-boot-net with mainline
Merge git://www.denx.de/git/u-boot
Conflicts:
	drivers/bcm570x.c
	drivers/tigon3.c
Diffstat (limited to 'common/command.c')
| -rw-r--r-- | common/command.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/common/command.c b/common/command.c index e917975a7..af2f8cbf7 100644 --- a/common/command.c +++ b/common/command.c @@ -42,7 +42,7 @@ U_BOOT_CMD(  	NULL  ); -#if (CONFIG_COMMANDS & CFG_CMD_ECHO) +#if defined(CONFIG_CMD_ECHO)  int  do_echo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) @@ -76,7 +76,7 @@ U_BOOT_CMD(  	"    - echo args to console; \\c suppresses newline\n"  ); -#endif	/*  CFG_CMD_ECHO */ +#endif  #ifdef CFG_HUSH_PARSER @@ -409,7 +409,7 @@ void install_auto_complete(void)  {  	install_auto_complete_handler("printenv", var_complete);  	install_auto_complete_handler("setenv", var_complete); -#if (CONFIG_COMMANDS & CFG_CMD_RUN) +#if defined(CONFIG_CMD_RUN)  	install_auto_complete_handler("run", var_complete);  #endif  }  |