diff options
author | Simon Glass <sjg@chromium.org> | 2016-05-01 17:36:14 (GMT) |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-05-17 15:54:43 (GMT) |
commit | 74001a2570ccbc120366e66dd40e8c66e3a6820c (patch) | |
tree | fccdc192fe292afe40c8f1daeca05d6e4fc479c4 /include/part.h | |
parent | 57ebf67bad82da0b3ade1728fb39a64d1c29822f (diff) | |
download | u-boot-74001a2570ccbc120366e66dd40e8c66e3a6820c.tar.xz |
dm: ide: Drop the 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 f206910..f09b794 100644 --- a/include/part.h +++ b/include/part.h @@ -73,7 +73,6 @@ typedef struct disk_partition { * error occurred. */ struct blk_desc *blk_get_dev(const char *ifname, int dev); -struct blk_desc *ide_get_dev(int dev); struct blk_desc *sata_get_dev(int dev); struct blk_desc *scsi_get_dev(int dev); struct blk_desc *mmc_get_dev(int dev); @@ -174,7 +173,6 @@ extern const struct block_drvr block_drvr[]; #else static inline struct blk_desc *blk_get_dev(const char *ifname, int dev) { return NULL; } -static inline struct blk_desc *ide_get_dev(int dev) { return NULL; } static inline struct blk_desc *sata_get_dev(int dev) { return NULL; } static inline struct blk_desc *scsi_get_dev(int dev) { return NULL; } static inline struct blk_desc *mmc_get_dev(int dev) { return NULL; } |