diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:21 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-27 07:46:21 -0400 |
commit | d15a613ba01ff2b209ecad7a38ccbb23b3b06c92 (patch) | |
tree | 3c13ef45f1eae35a2079f04350266f61bfbfa6c8 /drivers/ide/ide-io.c | |
parent | 088b1b88609ce89b6ab19d114cdbec94a44aa22c (diff) |
ide: remove IDE_ARCH_INTR (v2)
This micro-optimization is not worth it. Just always check for
existence of ->ack_intr method in ide_intr() and ide_timer_expiry().
v2:
Fix brown-paper-bag bug spotted by David D. Kilzer.
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Michael Schmitz <schmitz@debian.org>
Cc: "David D. Kilzer" <ddkilzer@kilzer.net>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-io.c')
-rw-r--r-- | drivers/ide/ide-io.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/ide/ide-io.c b/drivers/ide/ide-io.c index 2e92497b58aa..e85060164203 100644 --- a/drivers/ide/ide-io.c +++ b/drivers/ide/ide-io.c | |||
@@ -739,7 +739,8 @@ void ide_timer_expiry (unsigned long data) | |||
739 | } else if (drive_is_ready(drive)) { | 739 | } else if (drive_is_ready(drive)) { |
740 | if (drive->waiting_for_dma) | 740 | if (drive->waiting_for_dma) |
741 | hwif->dma_ops->dma_lost_irq(drive); | 741 | hwif->dma_ops->dma_lost_irq(drive); |
742 | (void)ide_ack_intr(hwif); | 742 | if (hwif->ack_intr) |
743 | hwif->ack_intr(hwif); | ||
743 | printk(KERN_WARNING "%s: lost interrupt\n", | 744 | printk(KERN_WARNING "%s: lost interrupt\n", |
744 | drive->name); | 745 | drive->name); |
745 | startstop = handler(drive); | 746 | startstop = handler(drive); |
@@ -854,7 +855,7 @@ irqreturn_t ide_intr (int irq, void *dev_id) | |||
854 | 855 | ||
855 | spin_lock_irqsave(&hwif->lock, flags); | 856 | spin_lock_irqsave(&hwif->lock, flags); |
856 | 857 | ||
857 | if (!ide_ack_intr(hwif)) | 858 | if (hwif->ack_intr && hwif->ack_intr(hwif) == 0) |
858 | goto out; | 859 | goto out; |
859 | 860 | ||
860 | handler = hwif->handler; | 861 | handler = hwif->handler; |