Skip to content

Commit

Permalink
blk: Drop IF_TYPE_DOC
Browse files Browse the repository at this point in the history
This doesn't seem to be used for anything and it isn't clear what it is.
It dates from the first U-Boot commit.

Drop it.

Signed-off-by: Simon Glass <[email protected]>
  • Loading branch information
sjg20 authored and trini committed Sep 16, 2022
1 parent 0417b85 commit 1c2e255
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
9 changes: 0 additions & 9 deletions disk/part.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,6 @@ void dev_print (struct blk_desc *dev_desc)
case IF_TYPE_VIRTIO:
printf("%s VirtIO Block Device\n", dev_desc->vendor);
break;
case IF_TYPE_DOC:
puts("device type DOC\n");
return;
case IF_TYPE_UNKNOWN:
puts("device type unknown\n");
return;
Expand Down Expand Up @@ -266,9 +263,6 @@ static void print_part_header(const char *type, struct blk_desc *dev_desc)
case IF_TYPE_USB:
puts ("USB");
break;
case IF_TYPE_DOC:
puts ("DOC");
break;
case IF_TYPE_MMC:
puts ("MMC");
break;
Expand Down Expand Up @@ -782,9 +776,6 @@ void part_set_generic_name(const struct blk_desc *dev_desc,
case IF_TYPE_USB:
devtype = "usbd";
break;
case IF_TYPE_DOC:
devtype = "docd";
break;
case IF_TYPE_MMC:
case IF_TYPE_SD:
devtype = "mmcsd";
Expand Down
2 changes: 0 additions & 2 deletions drivers/block/blk-uclass.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ static const char *if_typename_str[IF_TYPE_COUNT] = {
[IF_TYPE_SCSI] = "scsi",
[IF_TYPE_ATAPI] = "atapi",
[IF_TYPE_USB] = "usb",
[IF_TYPE_DOC] = "doc",
[IF_TYPE_MMC] = "mmc",
[IF_TYPE_SD] = "sd",
[IF_TYPE_SATA] = "sata",
Expand All @@ -39,7 +38,6 @@ static enum uclass_id if_type_uclass_id[IF_TYPE_COUNT] = {
[IF_TYPE_SCSI] = UCLASS_SCSI,
[IF_TYPE_ATAPI] = UCLASS_INVALID,
[IF_TYPE_USB] = UCLASS_MASS_STORAGE,
[IF_TYPE_DOC] = UCLASS_INVALID,
[IF_TYPE_MMC] = UCLASS_MMC,
[IF_TYPE_SD] = UCLASS_INVALID,
[IF_TYPE_SATA] = UCLASS_AHCI,
Expand Down
1 change: 0 additions & 1 deletion include/blk.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ enum if_type {
IF_TYPE_SCSI,
IF_TYPE_ATAPI,
IF_TYPE_USB,
IF_TYPE_DOC,
IF_TYPE_MMC,
IF_TYPE_SD,
IF_TYPE_SATA,
Expand Down

0 comments on commit 1c2e255

Please sign in to comment.