diff options
| author | Marek Vasut <marek.vasut@gmail.com> | 2011-07-12 02:16:46 +0200 | 
|---|---|---|
| committer | Remy Bohmer <linux@bohmer.net> | 2011-08-08 22:00:12 +0200 | 
| commit | 2a94dda0e7c95de19356b78ad59808ee1e67ae27 (patch) | |
| tree | ca635b30e4bd32b02475a92e9dd8e4218eec70de | |
| parent | 01a97d45d1be79960570fb345b2c15331f79f053 (diff) | |
| download | olio-uboot-2014.01-2a94dda0e7c95de19356b78ad59808ee1e67ae27.tar.xz olio-uboot-2014.01-2a94dda0e7c95de19356b78ad59808ee1e67ae27.zip | |
USB: Move USB_PRINTF() out of ifdef in usb_scan_devices()
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
| -rw-r--r-- | common/usb.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/usb.c b/common/usb.c index 6a7df0771..a401c0919 100644 --- a/common/usb.c +++ b/common/usb.c @@ -957,8 +957,8 @@ void usb_scan_devices(void)  	/* insert "driver" if possible */  #ifdef CONFIG_USB_KEYBOARD  	drv_usb_kbd_init(); -	USB_PRINTF("scan end\n");  #endif +	USB_PRINTF("scan end\n");  } |