diff options
author | Simon Glass <sjg@chromium.org> | 2016-05-01 17:36:20 (GMT) |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-05-17 15:54:43 (GMT) |
commit | f1d86fd3b15c2af53964d948c72c9a0a63511927 (patch) | |
tree | cacd025a74d82201ab3f0bc218d7ac1d2d709682 /include/part.h | |
parent | ae9ffccdac12b21ad55401d8554b5d835c9c8f22 (diff) | |
download | u-boot-f1d86fd3b15c2af53964d948c72c9a0a63511927.tar.xz |
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 'include/part.h')
-rw-r--r-- | include/part.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/part.h b/include/part.h index 3b59139..47f5baf 100644 --- a/include/part.h +++ b/include/part.h @@ -92,7 +92,6 @@ struct blk_desc *blk_get_dev(const char *ifname, int dev); */ int mmc_select_hwpart(int dev_num, int hwpart); struct blk_desc *mg_disk_get_dev(int dev); -struct blk_desc *host_get_dev(int dev); int host_get_dev_err(int dev, struct blk_desc **blk_devp); /* disk/part.c */ @@ -171,7 +170,6 @@ static inline struct blk_desc *blk_get_dev(const char *ifname, int dev) { return NULL; } static inline int mmc_select_hwpart(int dev_num, int hwpart) { return -1; } static inline struct blk_desc *mg_disk_get_dev(int dev) { return NULL; } -static inline struct blk_desc *host_get_dev(int dev) { return NULL; } static inline int part_get_info(struct blk_desc *dev_desc, int part, disk_partition_t *info) { return -1; } |