diff options
author | Anatolij Gustschin <agust@denx.de> | 2008-03-26 16:47:44 (GMT) |
---|---|---|
committer | Markus Klotzbuecher <mk@denx.de> | 2008-03-26 17:09:55 (GMT) |
commit | 841e5edd1623f3fecb6bffc5c2f938ed7a947360 (patch) | |
tree | c7076f733f4d8d062297731a9bc63c9af0a932eb | |
parent | 5b5eb9ca5b778f763bcf332697b35cc1e747626e (diff) | |
download | u-boot-841e5edd1623f3fecb6bffc5c2f938ed7a947360.tar.xz |
Fix compilation error in cmd_usb.c
This patch fixes compilation error
cmd_usb.c: In function 'do_usb':
cmd_usb.c:552: error: void value not ignored as it ought to be
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Markus Klotzbuecher <mk@denx.de>
-rw-r--r-- | include/usb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/usb.h b/include/usb.h index 4e1539f..5a6ffdd 100644 --- a/include/usb.h +++ b/include/usb.h @@ -195,7 +195,7 @@ void usb_event_poll(void); #define USB_MAX_STOR_DEV 5 block_dev_desc_t *usb_stor_get_dev(int index); int usb_stor_scan(int mode); -void usb_stor_info(void); +int usb_stor_info(void); #endif |