diff options
author | Simon Glass <sjg@chromium.org> | 2022-08-11 19:34:55 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-16 11:05:16 -0400 |
commit | 1dbe71fbb83891967cd4ce58118e008b03a90e73 (patch) | |
tree | ecd267ccfed4d9c3f2481ef232653501ec7502da /disk | |
parent | f512388ed8fbea6e5aefa2950e4b9673706ebfbe (diff) | |
download | u-boot-1dbe71fbb83891967cd4ce58118e008b03a90e73.tar.gz |
blk: Drop IF_TYPE_SD
This is not really needed since it does the same things as MMC. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'disk')
-rw-r--r-- | disk/part.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/disk/part.c b/disk/part.c index a5c1d7a0ae..2bcc6f4f40 100644 --- a/disk/part.c +++ b/disk/part.c @@ -135,7 +135,6 @@ void dev_print (struct blk_desc *dev_desc) dev_desc->revision, dev_desc->product); break; - case IF_TYPE_SD: case IF_TYPE_MMC: case IF_TYPE_USB: case IF_TYPE_NVME: @@ -772,7 +771,6 @@ void part_set_generic_name(const struct blk_desc *dev_desc, devtype = "usbd"; break; case IF_TYPE_MMC: - case IF_TYPE_SD: devtype = "mmcsd"; break; default: |