projects
/
linux-edison.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f333b3f
)
[libata sata_mv] IRQ PIO build fix
author
Jeff Garzik
<jgarzik@pobox.com>
Fri, 18 Nov 2005 16:55:00 +0000
(11:55 -0500)
committer
Jeff Garzik
<jgarzik@pobox.com>
Fri, 18 Nov 2005 16:55:00 +0000
(11:55 -0500)
drivers/scsi/sata_mv.c
patch
|
blob
|
history
diff --git
a/drivers/scsi/sata_mv.c
b/drivers/scsi/sata_mv.c
index
9687646
..
6dc2a61
100644
(file)
--- a/
drivers/scsi/sata_mv.c
+++ b/
drivers/scsi/sata_mv.c
@@
-1220,8
+1220,7
@@
static void mv_host_intr(struct ata_host_set *host_set, u32 relevant,
handled++;
}
- if (ap &&
- (ap->flags & (ATA_FLAG_PORT_DISABLED | ATA_FLAG_NOINTR)))
+ if (ap && (ap->flags & ATA_FLAG_PORT_DISABLED))
continue;
err_mask = ac_err_mask(ata_status);
@@
-1242,7
+1241,7
@@
static void mv_host_intr(struct ata_host_set *host_set, u32 relevant,
VPRINTK("port %u IRQ found for qc, "
"ata_status 0x%x\n", port,ata_status);
/* mark qc status appropriately */
- if (!(qc->tf.
ctl & ATA_NIEN
))
+ if (!(qc->tf.
flags & ATA_TFLAG_POLLING
))
ata_qc_complete(qc, err_mask);
}
}