Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/b94fc8518eb60102fbc0fa46a84a43e02e0c0a6e You should set ROOT_URL correctly, otherwise the web may not work correctly.

usb: Correct return value in usb_stor_info()

This should return 0 on success, not 1. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Marek Vasut <marex@denx.de>
Reviewed-by: Tom Rini <trini@konsulko.com>
master
Simon Glass 9 years ago committed by Tom Rini
parent 5b15a2596f
commit b94fc8518e
  1. 2
      common/usb_storage.c

@ -193,7 +193,7 @@ int usb_stor_info(void)
return 1;
}
return 1;
return 0;
}
static unsigned int usb_get_max_lun(struct us_data *us)

Loading…
Cancel
Save