aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/sata_sil24.c
diff options
context:
space:
mode:
authorTejun Heo <htejun@gmail.com>2006-04-02 05:51:52 -0400
committerJeff Garzik <jeff@garzik.org>2006-04-02 10:09:19 -0400
commit198e0fed9e59461fc1890dd8b75ec72d14638873 (patch)
treec5c1d727117df989d6e6e8e2b79d065a669a7a27 /drivers/scsi/sata_sil24.c
parent949b38af40a0b88b7267908b1554a45b97b5b737 (diff)
[PATCH] libata: rename ATA_FLAG_PORT_DISABLED to ATA_FLAG_DISABLED
Rename ATA_FLAG_PORT_DISABLED to ATA_FLAG_DISABLED for consistency. (ATA_FLAG_* are always about ports). 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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sata_sil24.c b/drivers/scsi/sata_sil24.c
index 068c98a4111..c34f6dabf41 100644
--- a/drivers/scsi/sata_sil24.c
+++ b/drivers/scsi/sata_sil24.c
@@ -770,7 +770,7 @@ static irqreturn_t sil24_interrupt(int irq, void *dev_instance, struct pt_regs *
770 for (i = 0; i < host_set->n_ports; i++) 770 for (i = 0; i < host_set->n_ports; i++)
771 if (status & (1 << i)) { 771 if (status & (1 << i)) {
772 struct ata_port *ap = host_set->ports[i]; 772 struct ata_port *ap = host_set->ports[i];
773 if (ap && !(ap->flags & ATA_FLAG_PORT_DISABLED)) { 773 if (ap && !(ap->flags & ATA_FLAG_DISABLED)) {
774 sil24_host_intr(host_set->ports[i]); 774 sil24_host_intr(host_set->ports[i]);
775 handled++; 775 handled++;
776 } else 776 } else