[PATCH 1/1] scsi:aic7xxx_old: fix: add missing enum ahc_chip entries

From: Antonio Alecrim Jr
Date: Fri Sep 13 2013 - 16:27:31 EST


Due to this missing enum entries some switch cases have
unreached conditions:
drivers/scsi/aic7xxx_old.c: In function âaic7xxx_registerâ:
drivers/scsi/aic7xxx_old.c:7901:5: warning: case value â257â not in enumerated type âahc_chipâ [-Wswitch]

Signed-off-by: Antonio Alecrim Jr <antonio.alecrim@xxxxxxxxx>
---
drivers/scsi/aic7xxx_old.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/drivers/scsi/aic7xxx_old.c b/drivers/scsi/aic7xxx_old.c
index 33ec9c6..643e214 100644
--- a/drivers/scsi/aic7xxx_old.c
+++ b/drivers/scsi/aic7xxx_old.c
@@ -728,6 +728,8 @@ typedef enum {
AHC_VL = 0x0100,
AHC_EISA = 0x0200,
AHC_PCI = 0x0400,
+ AHC_AIC7770_EISA = AHC_AIC7770|AHC_EISA,
+ AHC_AIC7770_VL = AHC_AIC7770|AHC_VL,
} ahc_chip;

typedef enum {
--
1.8.3.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/