From: AKASHI Takahiro Date: Tue, 8 Mar 2022 11:36:44 +0000 (+0900) Subject: block: ide: call device_probe() after scanning X-Git-Tag: v2022.07~111^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4c73b0344230129ec7493cf425922791e6132a30;p=platform%2Fkernel%2Fu-boot.git block: ide: call device_probe() after scanning Every time an ide 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 Reviewed-by: Simon Glass --- diff --git a/drivers/block/ide.c b/drivers/block/ide.c index 63c4cfd..e8518ff 100644 --- a/drivers/block/ide.c +++ b/drivers/block/ide.c @@ -1123,6 +1123,10 @@ static int ide_probe(struct udevice *udev) blksz, size, &blk_dev); if (ret) return ret; + + ret = blk_probe_or_unbind(blk_dev); + if (ret) + return ret; } }