aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/mips/au1xxx-ide.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide/mips/au1xxx-ide.c')
-rw-r--r--drivers/ide/mips/au1xxx-ide.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/ide/mips/au1xxx-ide.c b/drivers/ide/mips/au1xxx-ide.c
index 1c95a0ed7504..92c90db4bb30 100644
--- a/drivers/ide/mips/au1xxx-ide.c
+++ b/drivers/ide/mips/au1xxx-ide.c
@@ -340,11 +340,6 @@ static void auide_dma_host_set(ide_drive_t *drive, int on)
340{ 340{
341} 341}
342 342
343static void auide_dma_lost_irq(ide_drive_t *drive)
344{
345 printk(KERN_ERR "%s: IRQ lost\n", drive->name);
346}
347
348static void auide_ddma_tx_callback(int irq, void *param) 343static void auide_ddma_tx_callback(int irq, void *param)
349{ 344{
350 _auide_hwif *ahwif = (_auide_hwif*)param; 345 _auide_hwif *ahwif = (_auide_hwif*)param;
@@ -390,7 +385,7 @@ static const struct ide_dma_ops au1xxx_dma_ops = {
390 .dma_start = auide_dma_start, 385 .dma_start = auide_dma_start,
391 .dma_end = auide_dma_end, 386 .dma_end = auide_dma_end,
392 .dma_test_irq = auide_dma_test_irq, 387 .dma_test_irq = auide_dma_test_irq,
393 .dma_lost_irq = auide_dma_lost_irq, 388 .dma_lost_irq = ide_dma_lost_irq,
394 .dma_timeout = auide_dma_timeout, 389 .dma_timeout = auide_dma_timeout,
395}; 390};
396 391