diff options
author | Tejun Heo <htejun@gmail.com> | 2006-04-11 09:32:18 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-04-11 13:31:35 -0400 |
commit | 3b9f1d0fb3fd68419ee3fa3e0833c6a05462150d (patch) | |
tree | 502e4de127ad51afb82b670497c436bb5ee1cc0f /drivers/scsi/sata_sil24.c | |
parent | 640088024dbf19553bb4b53d81e919cdf570f3b0 (diff) |
[PATCH] sata_sil24: rename PORT_IRQ_SDB_FIS to PORT_IRQ_SDB_NOTIFY
Rename PORT_IRQ_SDB_FIS to more proper PORT_IRQ_SDB_NOTIFY.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/scsi/sata_sil24.c')
-rw-r--r-- | drivers/scsi/sata_sil24.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/sata_sil24.c b/drivers/scsi/sata_sil24.c index e9c5c2f63909..a5ea9f6df8eb 100644 --- a/drivers/scsi/sata_sil24.c +++ b/drivers/scsi/sata_sil24.c | |||
@@ -143,7 +143,7 @@ enum { | |||
143 | PORT_IRQ_PHYRDY_CHG = (1 << 4), /* PHY ready change */ | 143 | PORT_IRQ_PHYRDY_CHG = (1 << 4), /* PHY ready change */ |
144 | PORT_IRQ_COMWAKE = (1 << 5), /* COMWAKE received */ | 144 | PORT_IRQ_COMWAKE = (1 << 5), /* COMWAKE received */ |
145 | PORT_IRQ_UNK_FIS = (1 << 6), /* Unknown FIS received */ | 145 | PORT_IRQ_UNK_FIS = (1 << 6), /* Unknown FIS received */ |
146 | PORT_IRQ_SDB_FIS = (1 << 11), /* SDB FIS received */ | 146 | PORT_IRQ_SDB_NOTIFY = (1 << 11), /* SDB notify received */ |
147 | 147 | ||
148 | /* bits[27:16] are unmasked (raw) */ | 148 | /* bits[27:16] are unmasked (raw) */ |
149 | PORT_IRQ_RAW_SHIFT = 16, | 149 | PORT_IRQ_RAW_SHIFT = 16, |
@@ -974,8 +974,8 @@ static int sil24_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
974 | 974 | ||
975 | /* Configure interrupts */ | 975 | /* Configure interrupts */ |
976 | writel(0xffff, port + PORT_IRQ_ENABLE_CLR); | 976 | writel(0xffff, port + PORT_IRQ_ENABLE_CLR); |
977 | writel(PORT_IRQ_COMPLETE | PORT_IRQ_ERROR | PORT_IRQ_SDB_FIS, | 977 | writel(PORT_IRQ_COMPLETE | PORT_IRQ_ERROR | |
978 | port + PORT_IRQ_ENABLE_SET); | 978 | PORT_IRQ_SDB_NOTIFY, port + PORT_IRQ_ENABLE_SET); |
979 | 979 | ||
980 | /* Clear interrupts */ | 980 | /* Clear interrupts */ |
981 | writel(0x0fff0fff, port + PORT_IRQ_STAT); | 981 | writel(0x0fff0fff, port + PORT_IRQ_STAT); |