ata: sata_sil: Remove useless BLK guard in sata_sil.h
authorTom Rini <trini@konsulko.com>
Sat, 11 Jun 2022 02:59:29 +0000 (22:59 -0400)
committerTom Rini <trini@konsulko.com>
Tue, 28 Jun 2022 21:03:32 +0000 (17:03 -0400)
Now that the driver only supports CONFIG_BLK, remove the useless guard
in sata_sil.h.

Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/ata/sata_sil.h

index bea4322..9ad09e5 100644 (file)
@@ -212,12 +212,10 @@ enum {
        CMD_ERR         = 0x21,
 };
 
-#if CONFIG_IS_ENABLED(BLK)
 #define ATA_MAX_PORTS          32
 struct sil_sata_priv {
        int             port_num;
        struct sil_sata *sil_sata_desc[ATA_MAX_PORTS];
 };
-#endif
 
 #endif