diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-08-15 05:38:46 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-10-12 14:55:34 -0400 |
commit | 6d32d30f55020d766388df7515f771f68c973033 (patch) | |
tree | ec0efe48460b5b3f177fed2698ccd04b7964359b /drivers/ata/ahci.c | |
parent | cb94c1cf5a6beffbd8935eb91227df0dd1987644 (diff) |
[libata] Remove ->irq_ack() hook, and ata_dummy_irq_on()
* ->irq_ack() is redundant to what the irq handler already
performs... chk-status + irq-clear. Furthermore, it is only
called in one place, when screaming-irq-debugging is enabled,
so we don't want to bother with a hook just for that.
* ata_dummy_irq_on() is only ever used in drivers that have
no callpath reaching ->irq_on(). Remove .irq_on hook from
those drivers, and the now-unused ata_dummy_irq_on()
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/ahci.c')
-rw-r--r-- | drivers/ata/ahci.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index baf7d0562190..c888c966a020 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -276,8 +276,6 @@ static const struct ata_port_operations ahci_ops = { | |||
276 | .qc_issue = ahci_qc_issue, | 276 | .qc_issue = ahci_qc_issue, |
277 | 277 | ||
278 | .irq_clear = ahci_irq_clear, | 278 | .irq_clear = ahci_irq_clear, |
279 | .irq_on = ata_dummy_irq_on, | ||
280 | .irq_ack = ata_dummy_irq_ack, | ||
281 | 279 | ||
282 | .scr_read = ahci_scr_read, | 280 | .scr_read = ahci_scr_read, |
283 | .scr_write = ahci_scr_write, | 281 | .scr_write = ahci_scr_write, |
@@ -310,8 +308,6 @@ static const struct ata_port_operations ahci_vt8251_ops = { | |||
310 | .qc_issue = ahci_qc_issue, | 308 | .qc_issue = ahci_qc_issue, |
311 | 309 | ||
312 | .irq_clear = ahci_irq_clear, | 310 | .irq_clear = ahci_irq_clear, |
313 | .irq_on = ata_dummy_irq_on, | ||
314 | .irq_ack = ata_dummy_irq_ack, | ||
315 | 311 | ||
316 | .scr_read = ahci_scr_read, | 312 | .scr_read = ahci_scr_read, |
317 | .scr_write = ahci_scr_write, | 313 | .scr_write = ahci_scr_write, |