[U-Boot] [PATCH 17/44] dm: sandbox: Add a legacy host block interface

Simon Glass sjg at chromium.org
Sun Apr 10 04:45:09 CEST 2016


Add a legacy block interface for sandbox host.

Signed-off-by: Simon Glass <sjg at chromium.org>
---

 drivers/block/sandbox.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/block/sandbox.c b/drivers/block/sandbox.c
index 6d41508..2b6a893 100644
--- a/drivers/block/sandbox.c
+++ b/drivers/block/sandbox.c
@@ -239,4 +239,11 @@ U_BOOT_DRIVER(sandbox_host_blk) = {
 	.ops		= &sandbox_host_blk_ops,
 	.priv_auto_alloc_size	= sizeof(struct host_block_dev),
 };
+#else
+U_BOOT_LEGACY_BLK(sandbox_host) = {
+	.if_typename	= "host",
+	.if_type	= IF_TYPE_HOST,
+	.max_devs	= CONFIG_HOST_MAX_DEVICES,
+	.get_dev	= host_get_dev_err,
+};
 #endif
-- 
2.8.0.rc3.226.g39d4020



More information about the U-Boot mailing list