aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-04-10 11:21:39 -0400
committerTom Rini <trini@konsulko.com>2022-04-10 11:21:39 -0400
commit33ae8c5bebba0874fbc432914406e63fbc219080 (patch)
tree050e8c63351c2efd654930e59a6fd2fe031c52c2 /common
parent5c7399ec90513bc0310801c9f852ea7697a91759 (diff)
parent6b7a6210fde96bb95c8168af4ebf4eb83401df9e (diff)
downloadu-boot-33ae8c5bebba0874fbc432914406e63fbc219080.zip
u-boot-33ae8c5bebba0874fbc432914406e63fbc219080.tar.gz
u-boot-33ae8c5bebba0874fbc432914406e63fbc219080.tar.bz2
Merge tag 'efi-2022-07-rc1' of https://source.denx.de/u-boot/custodians/u-boot-efiWIP/10Apr2022
Pull request for efi-2022-07-rc1 Documentation: * Describe how enable DM_SERIAL for a board UEFI * Preparatory patches for better integration of DM and UEFI * Use sysreset after capsule updates instead of do_reset * Allow to disable persisting non-volatile variables
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 */