diff options
Diffstat (limited to 'drivers/mmc/pxamci.c')
-rw-r--r-- | drivers/mmc/pxamci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mmc/pxamci.c b/drivers/mmc/pxamci.c index ef350908478c..a526698b8c91 100644 --- a/drivers/mmc/pxamci.c +++ b/drivers/mmc/pxamci.c | |||
@@ -299,7 +299,7 @@ static int pxamci_data_done(struct pxamci_host *host, unsigned int stat) | |||
299 | return 1; | 299 | return 1; |
300 | } | 300 | } |
301 | 301 | ||
302 | static irqreturn_t pxamci_irq(int irq, void *devid, struct pt_regs *regs) | 302 | static irqreturn_t pxamci_irq(int irq, void *devid) |
303 | { | 303 | { |
304 | struct pxamci_host *host = devid; | 304 | struct pxamci_host *host = devid; |
305 | unsigned int ireg; | 305 | unsigned int ireg; |
@@ -399,13 +399,13 @@ static struct mmc_host_ops pxamci_ops = { | |||
399 | .set_ios = pxamci_set_ios, | 399 | .set_ios = pxamci_set_ios, |
400 | }; | 400 | }; |
401 | 401 | ||
402 | static void pxamci_dma_irq(int dma, void *devid, struct pt_regs *regs) | 402 | static void pxamci_dma_irq(int dma, void *devid) |
403 | { | 403 | { |
404 | printk(KERN_ERR "DMA%d: IRQ???\n", dma); | 404 | printk(KERN_ERR "DMA%d: IRQ???\n", dma); |
405 | DCSR(dma) = DCSR_STARTINTR|DCSR_ENDINTR|DCSR_BUSERR; | 405 | DCSR(dma) = DCSR_STARTINTR|DCSR_ENDINTR|DCSR_BUSERR; |
406 | } | 406 | } |
407 | 407 | ||
408 | static irqreturn_t pxamci_detect_irq(int irq, void *devid, struct pt_regs *regs) | 408 | static irqreturn_t pxamci_detect_irq(int irq, void *devid) |
409 | { | 409 | { |
410 | struct pxamci_host *host = mmc_priv(devid); | 410 | struct pxamci_host *host = mmc_priv(devid); |
411 | 411 | ||