From 5bac9c5307642400abc61a7f9ba76ac06a77fcf8 Mon Sep 17 00:00:00 2001 From: AKASHI Takahiro Date: Thu, 22 Aug 2019 16:47:39 +0900 Subject: cmd: host: fix seg fault at "host info" With the patch below applied, host_block_dev structure was switched to be placed in platdata rather than priv. The command "host info" must be aligned with this change. Otherwise, we will see "Segmentation Fault." Fixes: 8f994c860d91 ("sandbox: blk: Switch to use platdata_auto_alloc_size for the driver data") Signed-off-by: AKASHI Takahiro Reviewed-by: Bin Meng Tested-by: Bin Meng Reviewed-by: Heinrich Schuchardt --- cmd/host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/host.c') diff --git a/cmd/host.c b/cmd/host.c index f7d3eae5b1..98c4d2a099 100644 --- a/cmd/host.c +++ b/cmd/host.c @@ -89,7 +89,7 @@ static int do_host_info(cmd_tbl_t *cmdtp, int flag, int argc, struct host_block_dev *host_dev; #ifdef CONFIG_BLK - host_dev = dev_get_priv(blk_dev->bdev); + host_dev = dev_get_platdata(blk_dev->bdev); #else host_dev = blk_dev->priv; #endif -- cgit v1.2.3