]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
blk: Drop IF_TYPE_ATAPI
authorSimon Glass <sjg@chromium.org>
Fri, 12 Aug 2022 01:34:54 +0000 (19:34 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 16 Sep 2022 15:05:16 +0000 (11:05 -0400)
This is not really needed since it does the same things as IDE. Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
disk/part.c
drivers/block/blk-uclass.c
include/blk.h

index 5f64da54e5478b4d8908def814e119ddebd9d442..a5c1d7a0aecf3dd3b4caa9dcd8aef58c3b4a06c3 100644 (file)
@@ -128,7 +128,6 @@ void dev_print (struct blk_desc *dev_desc)
                        dev_desc->product,
                        dev_desc->revision);
                break;
-       case IF_TYPE_ATAPI:
        case IF_TYPE_IDE:
        case IF_TYPE_SATA:
                printf ("Model: %s Firm: %s Ser#: %s\n",
@@ -257,9 +256,6 @@ static void print_part_header(const char *type, struct blk_desc *dev_desc)
        case IF_TYPE_SCSI:
                puts ("SCSI");
                break;
-       case IF_TYPE_ATAPI:
-               puts ("ATAPI");
-               break;
        case IF_TYPE_USB:
                puts ("USB");
                break;
@@ -767,7 +763,6 @@ void part_set_generic_name(const struct blk_desc *dev_desc,
        switch (dev_desc->if_type) {
        case IF_TYPE_IDE:
        case IF_TYPE_SATA:
-       case IF_TYPE_ATAPI:
                devtype = "hd";
                break;
        case IF_TYPE_SCSI:
index f16cb279d4e084a48409a00b1aab9a740fe4cf46..57230e9bab7953ac7ae7a3b1dd6ef3760773da0f 100644 (file)
@@ -20,7 +20,6 @@
 static const char *if_typename_str[IF_TYPE_COUNT] = {
        [IF_TYPE_IDE]           = "ide",
        [IF_TYPE_SCSI]          = "scsi",
-       [IF_TYPE_ATAPI]         = "atapi",
        [IF_TYPE_USB]           = "usb",
        [IF_TYPE_MMC]           = "mmc",
        [IF_TYPE_SD]            = "sd",
@@ -36,7 +35,6 @@ static const char *if_typename_str[IF_TYPE_COUNT] = {
 static enum uclass_id if_type_uclass_id[IF_TYPE_COUNT] = {
        [IF_TYPE_IDE]           = UCLASS_IDE,
        [IF_TYPE_SCSI]          = UCLASS_SCSI,
-       [IF_TYPE_ATAPI]         = UCLASS_INVALID,
        [IF_TYPE_USB]           = UCLASS_MASS_STORAGE,
        [IF_TYPE_MMC]           = UCLASS_MMC,
        [IF_TYPE_SD]            = UCLASS_INVALID,
index 1898ebdda543a19d4967bf611a361e0f9b1e2dda..c7461f9f35a6fdcf90990ac3e29ec89cccb6784f 100644 (file)
@@ -31,7 +31,6 @@ enum if_type {
        IF_TYPE_UNKNOWN = 0,
        IF_TYPE_IDE,
        IF_TYPE_SCSI,
-       IF_TYPE_ATAPI,
        IF_TYPE_USB,
        IF_TYPE_MMC,
        IF_TYPE_SD,