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 /common | |
parent | 01a97d45d1be79960570fb345b2c15331f79f053 (diff) | |
download | u-boot-imx-2a94dda0e7c95de19356b78ad59808ee1e67ae27.zip u-boot-imx-2a94dda0e7c95de19356b78ad59808ee1e67ae27.tar.gz u-boot-imx-2a94dda0e7c95de19356b78ad59808ee1e67ae27.tar.bz2 |
USB: Move USB_PRINTF() out of ifdef in usb_scan_devices()
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Diffstat (limited to 'common')
-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 6a7df07..a401c09 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"); } |