summaryrefslogtreecommitdiffstats
path: root/include/usb.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-01-03 13:50:30 -0700
committerSimon Glass <sjg@chromium.org>2016-01-07 10:27:07 -0700
commit70caa97108d790e5779b347a8530b130df9f000a (patch)
treef05ccb40de50fbff41d0b89f49116e794e8c3ee2 /include/usb.h
parentb042566dcf0225f89026113ac24b9bffb9546684 (diff)
downloadblackbird-obmc-uboot-70caa97108d790e5779b347a8530b130df9f000a.tar.gz
blackbird-obmc-uboot-70caa97108d790e5779b347a8530b130df9f000a.zip
usb: Allow up to 7 storage devices
The current limit of 5 is not enough for the driver model USB tests. Really we should not have a limit but the driver model code still uses the usb_dev_desc[] array, which has a limit. Increasing the limit by 2 should not bother anyone. Adjust it. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include/usb.h')
-rw-r--r--include/usb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/usb.h b/include/usb.h
index 2539364565..0b410b6cd1 100644
--- a/include/usb.h
+++ b/include/usb.h
@@ -227,7 +227,7 @@ int board_usb_cleanup(int index, enum usb_init_type init);
#ifdef CONFIG_USB_STORAGE
-#define USB_MAX_STOR_DEV 5
+#define USB_MAX_STOR_DEV 7
block_dev_desc_t *usb_stor_get_dev(int index);
int usb_stor_scan(int mode);
int usb_stor_info(void);
OpenPOWER on IntegriCloud