Commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f

Authored by Anatolij Gustschin
Committed by Wolfgang Denk
1 parent d8c82db482

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -195,7 +195,7 @@
195 195 #define USB_MAX_STOR_DEV 5
196 196 block_dev_desc_t *usb_stor_get_dev(int index);
197 197 int usb_stor_scan(int mode);
198   -void usb_stor_info(void);
  198 +int usb_stor_info(void);
199 199  
200 200 #endif
201 201