diff options
| -rw-r--r-- | drivers/mmc/host/tmio_mmc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/mmc/host/tmio_mmc.c b/drivers/mmc/host/tmio_mmc.c index 01add9bd6289..bbcbd72a46a4 100644 --- a/drivers/mmc/host/tmio_mmc.c +++ b/drivers/mmc/host/tmio_mmc.c | |||
| @@ -597,13 +597,11 @@ static int __devinit tmio_mmc_probe(struct platform_device *dev) | |||
| 597 | 597 | ||
| 598 | disable_mmc_irqs(host, TMIO_MASK_ALL); | 598 | disable_mmc_irqs(host, TMIO_MASK_ALL); |
| 599 | 599 | ||
| 600 | ret = request_irq(host->irq, tmio_mmc_irq, IRQF_DISABLED, "tmio-mmc", | 600 | ret = request_irq(host->irq, tmio_mmc_irq, IRQF_DISABLED | |
| 601 | host); | 601 | IRQF_TRIGGER_FALLING, "tmio-mmc", host); |
| 602 | if (ret) | 602 | if (ret) |
| 603 | goto unmap_cnf; | 603 | goto unmap_cnf; |
| 604 | 604 | ||
| 605 | set_irq_type(host->irq, IRQ_TYPE_EDGE_FALLING); | ||
| 606 | |||
| 607 | mmc_add_host(mmc); | 605 | mmc_add_host(mmc); |
| 608 | 606 | ||
| 609 | printk(KERN_INFO "%s at 0x%08lx irq %d\n", mmc_hostname(host->mmc), | 607 | printk(KERN_INFO "%s at 0x%08lx irq %d\n", mmc_hostname(host->mmc), |
