diff options
author | Tejun Heo <htejun@gmail.com> | 2006-04-02 13:51:52 +0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-04-02 18:09:19 +0400 |
commit | 198e0fed9e59461fc1890dd8b75ec72d14638873 (patch) | |
tree | c5c1d727117df989d6e6e8e2b79d065a669a7a27 /drivers/scsi/sata_sil24.c | |
parent | 949b38af40a0b88b7267908b1554a45b97b5b737 (diff) | |
download | linux-198e0fed9e59461fc1890dd8b75ec72d14638873.tar.xz |
[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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sata_sil24.c b/drivers/scsi/sata_sil24.c index 068c98a4111b..c34f6dabf418 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 * for (i = 0; i < host_set->n_ports; i++) if (status & (1 << i)) { struct ata_port *ap = host_set->ports[i]; - if (ap && !(ap->flags & ATA_FLAG_PORT_DISABLED)) { + if (ap && !(ap->flags & ATA_FLAG_DISABLED)) { sil24_host_intr(host_set->ports[i]); handled++; } else |