diff options
author | Simon Glass | 2016-05-01 11:36:20 -0600 |
---|---|---|
committer | Simon Glass | 2016-05-17 09:54:43 -0600 |
commit | f1d86fd3b15c2af53964d948c72c9a0a63511927 (patch) | |
tree | cacd025a74d82201ab3f0bc218d7ac1d2d709682 /disk | |
parent | ae9ffccdac12b21ad55401d8554b5d835c9c8f22 (diff) |
dm: sandbox: Drop the host_get_dev() function
This function is implemented by the legacy block functions now. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'disk')
-rw-r--r-- | disk/part.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/disk/part.c b/disk/part.c index 28c870664d6..e635d90864c 100644 --- a/disk/part.c +++ b/disk/part.c @@ -44,7 +44,7 @@ const struct block_drvr block_drvr[] = { { .name = "ace", }, #endif #if defined(CONFIG_SANDBOX) - { .name = "host", .get_dev = host_get_dev, }, + { .name = "host", }, #endif { }, }; |