diff mbox series

[v3,06/19] block: ide: call device_probe() after scanning

Message ID 20220308113657.221101-7-takahiro.akashi@linaro.org
State Accepted, archived
Commit 4c73b0344230129ec7493cf425922791e6132a30
Delegated to: Heinrich Schuchardt
Headers show
Series efi_loader: more tightly integrate UEFI disks to driver model | expand

Commit Message

AKASHI Takahiro March 8, 2022, 11:36 a.m. UTC
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 <takahiro.akashi@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
---
 drivers/block/ide.c | 4 ++++
 1 file changed, 4 insertions(+)
diff mbox series

Patch

diff --git a/drivers/block/ide.c b/drivers/block/ide.c
index 63c4cfdc1c21..e8518ff3a11a 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;
 		}
 	}