summaryrefslogtreecommitdiffstats
path: root/common/spl/spl_usb.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-05-01 11:36:13 -0600
committerSimon Glass <sjg@chromium.org>2016-05-17 09:54:43 -0600
commit57ebf67bad82da0b3ade1728fb39a64d1c29822f (patch)
treed1d11a85ed37eec6e51d4afaf3c65cf3012c2a83 /common/spl/spl_usb.c
parenta6331fa83cb4a1557df4acfa4214d556f4596904 (diff)
downloadtalos-obmc-uboot-57ebf67bad82da0b3ade1728fb39a64d1c29822f.tar.gz
talos-obmc-uboot-57ebf67bad82da0b3ade1728fb39a64d1c29822f.zip
dm: usb: Drop the get_dev() function
This function is implemented by the legacy block functions now. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/spl/spl_usb.c')
-rw-r--r--common/spl/spl_usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl_usb.c b/common/spl/spl_usb.c
index c42848e6fc..04fa66758c 100644
--- a/common/spl/spl_usb.c
+++ b/common/spl/spl_usb.c
@@ -39,7 +39,7 @@ int spl_usb_load_image(void)
#ifdef CONFIG_USB_STORAGE
/* try to recognize storage devices immediately */
usb_stor_curr_dev = usb_stor_scan(1);
- stor_dev = usb_stor_get_dev(usb_stor_curr_dev);
+ stor_dev = blk_get_devnum_by_type(IF_TYPE_USB, usb_stor_curr_dev);
if (!stor_dev)
return -ENODEV;
#endif
OpenPOWER on IntegriCloud