diff options
author | Simon Glass <sjg@chromium.org> | 2016-05-01 11:36:16 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-05-17 09:54:43 -0600 |
commit | edd82ab3547e27b4c1ab1ee7e620f982db9126ad (patch) | |
tree | 11971a5c4599e85063b6bf1d46528d78491e6318 /common/scsi.c | |
parent | 3c457f4d2e47cc91385abe15d3c825d0ce1a2b6f (diff) | |
download | u-boot-edd82ab3547e27b4c1ab1ee7e620f982db9126ad.zip u-boot-edd82ab3547e27b4c1ab1ee7e620f982db9126ad.tar.gz u-boot-edd82ab3547e27b4c1ab1ee7e620f982db9126ad.tar.bz2 |
dm: scsi: 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 'common/scsi.c')
-rw-r--r-- | common/scsi.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/common/scsi.c b/common/scsi.c index a336a10..5b6531f 100644 --- a/common/scsi.c +++ b/common/scsi.c @@ -327,13 +327,6 @@ void scsi_init(void) } #endif -#ifdef CONFIG_PARTITIONS -struct blk_desc *scsi_get_dev(int dev) -{ - return (dev < CONFIG_SYS_SCSI_MAX_DEVICE) ? &scsi_dev_desc[dev] : NULL; -} -#endif - /* copy src to dest, skipping leading and trailing blanks * and null terminate the string */ |