diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 19:32:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 19:32:01 -0400 |
commit | 44aefd2706bb6f5b65ba2c38cd89e7609e2b43d3 (patch) | |
tree | 93824f573767da634fbc82c388b6d33cc454212b /drivers/mmc/pxamci.c | |
parent | c1a26e7d40fb814716950122353a1a556844286b (diff) | |
parent | 7d12e780e003f93433d49ce78cfedf4b4c52adc5 (diff) |
Merge git://git.infradead.org/~dhowells/irq-2.6
* git://git.infradead.org/~dhowells/irq-2.6:
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
IRQ: Typedef the IRQ handler function type
IRQ: Typedef the IRQ flow handler function type
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 | ||