diff options
| author | Wolfgang Denk <wd@pollux.(none)> | 2005-08-02 17:06:17 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.(none)> | 2005-08-02 17:06:17 +0200 | 
| commit | 095b8a3798f1c6cd618092899e783dc2ee0d23f5 (patch) | |
| tree | 397887e662586728029560b27873451b4547c430 /common/cmd_usb.c | |
| parent | 797638f9ff2dc8e57f7bf57bfaa83d60e0784ea0 (diff) | |
| download | olio-uboot-2014.01-095b8a3798f1c6cd618092899e783dc2ee0d23f5.tar.xz olio-uboot-2014.01-095b8a3798f1c6cd618092899e783dc2ee0d23f5.zip | |
Coding style cleanup
Diffstat (limited to 'common/cmd_usb.c')
| -rw-r--r-- | common/cmd_usb.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/common/cmd_usb.c b/common/cmd_usb.c index 3af861942..0738f5530 100644 --- a/common/cmd_usb.c +++ b/common/cmd_usb.c @@ -455,9 +455,8 @@ int do_usb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  		i = usb_init();  #ifdef CONFIG_USB_STORAGE  		/* try to recognize storage devices immediately */ -		if (i >= 0)  +		if (i >= 0)  	 		usb_stor_curr_dev = usb_stor_scan(1); -		  #endif  		return 0;  	} |