diff options
| author | Simon Glass <[email protected]> | 2022-08-11 19:34:55 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-09-16 11:05:16 -0400 |
| commit | 1dbe71fbb83891967cd4ce58118e008b03a90e73 (patch) | |
| tree | ecd267ccfed4d9c3f2481ef232653501ec7502da /disk | |
| parent | f512388ed8fbea6e5aefa2950e4b9673706ebfbe (diff) | |
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 <[email protected]>
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 a5c1d7a0aec..2bcc6f4f403 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: |
