diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-07-25 15:18:16 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-07-30 00:48:07 +0200 | 
| commit | 936897d4d1365452bbbdf8430db5e7769ef08d38 (patch) | |
| tree | 11ffcbe392aa53fb6987817514460c44b8cc936a /common/cmd_bootm.c | |
| parent | 5d1d00fb36005482e1803a00ddc46efa11d719af (diff) | |
| download | olio-uboot-2014.01-936897d4d1365452bbbdf8430db5e7769ef08d38.tar.xz olio-uboot-2014.01-936897d4d1365452bbbdf8430db5e7769ef08d38.zip | |
Fix remaining CFG_CMD_ define, ifdef and comments
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'common/cmd_bootm.c')
| -rw-r--r-- | common/cmd_bootm.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 1c0a4161d..4040a691d 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -36,7 +36,7 @@  #include <lmb.h>  #include <asm/byteorder.h> -#if (CONFIG_COMMANDS & CFG_CMD_USB) +#if (CONFIG_CMD_USB)  #include <usb.h>  #endif @@ -217,7 +217,7 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	 */  	iflag = disable_interrupts(); -#if (CONFIG_COMMANDS & CFG_CMD_USB) +#if (CONFIG_CMD_USB)  	/*  	 * turn off USB to prevent the host controller from writing to the  	 * SDRAM while Linux is booting. This could happen (at least for OHCI |