aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/scsi/esp_scsi.c
diff options
context:
space:
mode:
authorKars de Jong <jongk@linux-m68k.org>2019-11-19 21:20:20 +0100
committerMartin K. Petersen <martin.petersen@oracle.com>2019-12-19 22:08:51 -0500
commit2086faae3c55a652cfbd369e18ecdb703aacc493 (patch)
treebbc6ed5af03fd46aab247c36e3253ea143ad3121 /drivers/scsi/esp_scsi.c
parentLinux 5.5-rc2 (diff)
downloadwireguard-linux-2086faae3c55a652cfbd369e18ecdb703aacc493.tar.xz
wireguard-linux-2086faae3c55a652cfbd369e18ecdb703aacc493.zip
scsi: esp_scsi: Correct ordering of PCSCSI definition in esp_rev enum
The order of the definitions in the esp_rev enum is important. The values are used in comparisons for chip features. Add a comment to the enum explaining this. Also, the actual values for the enum fields are irrelevant, so remove the explicit values (suggested by Geert Uytterhoeven). This makes adding a new field in the middle of the enum easier. Finally, move the PCSCSI definition to the right place in the enum. In its previous location, at the end of the enum, the wrong values are written to the CONFIG3 register when used with FAST-SCSI targets. Link: https://lore.kernel.org/r/20191119202021.28720-2-jongk@linux-m68k.org Signed-off-by: Kars de Jong <jongk@linux-m68k.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/esp_scsi.c')
-rw-r--r--drivers/scsi/esp_scsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/esp_scsi.c b/drivers/scsi/esp_scsi.c
index bb88995a12c7..4fc3eee3138b 100644
--- a/drivers/scsi/esp_scsi.c
+++ b/drivers/scsi/esp_scsi.c
@@ -2373,10 +2373,10 @@ static const char *esp_chip_names[] = {
"ESP100A",
"ESP236",
"FAS236",
+ "AM53C974",
"FAS100A",
"FAST",
"FASHME",
- "AM53C974",
};
static struct scsi_transport_template *esp_transport_template;