diff options
author | Tejun Heo <htejun@gmail.com> | 2005-08-17 00:09:13 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-08-17 00:51:50 -0400 |
commit | e382eb1dbdb2dec69806a72551bcb4a736142f6d (patch) | |
tree | c994010074ee6771f0a9edc4b40ea916ffb8deb5 /drivers/scsi/sata_sil24.c | |
parent | 4f50c3cbb4b608ae4d8ee73ce273d819d901a83f (diff) |
[PATCH] sil24: fix PORT_CTRL_STAT constants
07_sil24_fix-PORT_CTRL_STAT-constants.patch
PORT_CTRL_STAT constants were copied incorrectly from the
preview driver.
Signed-off-by: Edward Falk
sata_sil24.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/scsi/sata_sil24.c')
-rw-r--r-- | drivers/scsi/sata_sil24.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/scsi/sata_sil24.c b/drivers/scsi/sata_sil24.c index 547c29a5613b..7a3d50dcd938 100644 --- a/drivers/scsi/sata_sil24.c +++ b/drivers/scsi/sata_sil24.c | |||
@@ -140,10 +140,10 @@ enum { | |||
140 | PORT_CS_DEV_RST = (1 << 1), /* device reset */ | 140 | PORT_CS_DEV_RST = (1 << 1), /* device reset */ |
141 | PORT_CS_INIT = (1 << 2), /* port initialize */ | 141 | PORT_CS_INIT = (1 << 2), /* port initialize */ |
142 | PORT_CS_IRQ_WOC = (1 << 3), /* interrupt write one to clear */ | 142 | PORT_CS_IRQ_WOC = (1 << 3), /* interrupt write one to clear */ |
143 | PORT_CS_RESUME = (1 << 4), /* port resume */ | 143 | PORT_CS_RESUME = (1 << 6), /* port resume */ |
144 | PORT_CS_32BIT_ACTV = (1 << 5), /* 32-bit activation */ | 144 | PORT_CS_32BIT_ACTV = (1 << 10), /* 32-bit activation */ |
145 | PORT_CS_PM_EN = (1 << 6), /* port multiplier enable */ | 145 | PORT_CS_PM_EN = (1 << 13), /* port multiplier enable */ |
146 | PORT_CS_RDY = (1 << 7), /* port ready to accept commands */ | 146 | PORT_CS_RDY = (1 << 31), /* port ready to accept commands */ |
147 | 147 | ||
148 | /* PORT_IRQ_STAT/ENABLE_SET/CLR */ | 148 | /* PORT_IRQ_STAT/ENABLE_SET/CLR */ |
149 | /* bits[11:0] are masked */ | 149 | /* bits[11:0] are masked */ |