diff options
author | Simon Glass <sjg@chromium.org> | 2016-05-01 11:36:15 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-05-17 09:54:43 -0600 |
commit | 3c457f4d2e47cc91385abe15d3c825d0ce1a2b6f (patch) | |
tree | d2b388a60f961ec40b4ba25ddfef6503fe679c21 /disk | |
parent | 74001a2570ccbc120366e66dd40e8c66e3a6820c (diff) | |
download | u-boot-3c457f4d2e47cc91385abe15d3c825d0ce1a2b6f.zip u-boot-3c457f4d2e47cc91385abe15d3c825d0ce1a2b6f.tar.gz u-boot-3c457f4d2e47cc91385abe15d3c825d0ce1a2b6f.tar.bz2 |
dm: mmc: 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 'disk')
-rw-r--r-- | disk/part.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/disk/part.c b/disk/part.c index bf224b2..e70bef5 100644 --- a/disk/part.c +++ b/disk/part.c @@ -37,7 +37,6 @@ const struct block_drvr block_drvr[] = { #if defined(CONFIG_MMC) { .name = "mmc", - .get_dev = mmc_get_dev, .select_hwpart = mmc_select_hwpart, }, #endif |