diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2006-10-16 11:21:40 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-10-21 15:18:59 -0400 |
commit | 12a87d36b3c5cb76a182c35f40d959a615d1c862 (patch) | |
tree | 399eec23ec54f27b94f70831f978ae54933336a1 /drivers/ata/ahci.c | |
parent | 3343571d9f88a0de542d33aea9ab881f00ff866d (diff) |
[PATCH] ahci: readability tweak
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/ahci.c')
-rw-r--r-- | drivers/ata/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 25929123ffff..cef2e70d64f8 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -1041,7 +1041,7 @@ static void ahci_host_intr(struct ata_port *ap) | |||
1041 | /* hmmm... a spurious interupt */ | 1041 | /* hmmm... a spurious interupt */ |
1042 | 1042 | ||
1043 | /* some devices send D2H reg with I bit set during NCQ command phase */ | 1043 | /* some devices send D2H reg with I bit set during NCQ command phase */ |
1044 | if (ap->sactive && status & PORT_IRQ_D2H_REG_FIS) | 1044 | if (ap->sactive && (status & PORT_IRQ_D2H_REG_FIS)) |
1045 | return; | 1045 | return; |
1046 | 1046 | ||
1047 | /* ignore interim PIO setup fis interrupts */ | 1047 | /* ignore interim PIO setup fis interrupts */ |