[PATCH] Alchemy: Delete unused pt_regs * argument from au1xxx_dbdma_chan_alloc
The third argument of au1xxx_dbdma_chan_alloc's callback function is not used anywhere. Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Cc: David Howells <dhowells@redhat.com> Cc: Russell King <rmk@arm.linux.org.uk> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
cf134483b2
commit
53e62d3aaa
@ -476,13 +476,13 @@ static int auide_dma_lostirq(ide_drive_t *drive)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void auide_ddma_tx_callback(int irq, void *param, struct pt_regs *regs)
|
||||
static void auide_ddma_tx_callback(int irq, void *param)
|
||||
{
|
||||
_auide_hwif *ahwif = (_auide_hwif*)param;
|
||||
ahwif->drive->waiting_for_dma = 0;
|
||||
}
|
||||
|
||||
static void auide_ddma_rx_callback(int irq, void *param, struct pt_regs *regs)
|
||||
static void auide_ddma_rx_callback(int irq, void *param)
|
||||
{
|
||||
_auide_hwif *ahwif = (_auide_hwif*)param;
|
||||
ahwif->drive->waiting_for_dma = 0;
|
||||
|
Reference in New Issue
Block a user