aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorAKASHI Takahiro <takahiro.akashi@linaro.org>2022-03-08 20:36:39 +0900
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-04-09 21:06:31 +0200
commitae518bd88002400e2ea251f1ffe51fbde2d02fca (patch)
tree0b08d8c45837fd533865b1e6292eae0ecb4cf184 /drivers
parent7660cfee0fb7827535b8d7152613728ad399b9df (diff)
downloadu-boot-ae518bd88002400e2ea251f1ffe51fbde2d02fca.zip
u-boot-ae518bd88002400e2ea251f1ffe51fbde2d02fca.tar.gz
u-boot-ae518bd88002400e2ea251f1ffe51fbde2d02fca.tar.bz2
scsi: call device_probe() after scanning
Every time a scsi bus/port is scanned and a new block 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 'drivers')
-rw-r--r--drivers/scsi/scsi.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c
index d7b3301..78d729d 100644
--- a/drivers/scsi/scsi.c
+++ b/drivers/scsi/scsi.c
@@ -595,6 +595,11 @@ static int do_scsi_scan_one(struct udevice *dev, int id, int lun, bool verbose)
ata_swap_buf_le16((u16 *)&bdesc->revision, sizeof(bd.revision) / 2);
}
+ ret = blk_probe_or_unbind(bdev);
+ if (ret < 0)
+ /* TODO: undo create */
+ return ret;
+
if (verbose) {
printf(" Device %d: ", bdesc->devnum);
dev_print(bdesc);