aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorAKASHI Takahiro <takahiro.akashi@linaro.org>2022-03-08 20:36:40 +0900
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-04-09 21:06:31 +0200
commit8c9812a5d557c4eacf164147d7380b3af1b222ec (patch)
treeaee5718f65e7c34e40d286c97a5f5674fff56e4e /common
parentae518bd88002400e2ea251f1ffe51fbde2d02fca (diff)
downloadu-boot-8c9812a5d557c4eacf164147d7380b3af1b222ec.zip
u-boot-8c9812a5d557c4eacf164147d7380b3af1b222ec.tar.gz
u-boot-8c9812a5d557c4eacf164147d7380b3af1b222ec.tar.bz2
usb: storage: call device_probe() after scanning
Every time a usb bus/port is scanned and a new device is detected, we want to call device_probe() as it will give us a chance to run additional post-processings for some purposes. In particular, support for creating partitions on a device will be added. Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r--common/usb_storage.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/usb_storage.c b/common/usb_storage.c
index c9e2d73..291728f 100644
--- a/common/usb_storage.c
+++ b/common/usb_storage.c
@@ -239,6 +239,10 @@ static int usb_stor_probe_device(struct usb_device *udev)
if (ret)
return ret;
}
+
+ ret = blk_probe_or_unbind(dev);
+ if (ret)
+ return ret;
}
#else
/* We don't have space to even probe if we hit the maximum */