drivers: bus: omap_l3: Convert to use devm_request_irq()

With this we can remove the free_irq() calls from probe and remove.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Reviewed-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Tested-by: Sekhar Nori <nsekhar@ti.com>
This commit is contained in:
Peter Ujfalusi 2014-04-01 16:23:48 +03:00 committed by Nishanth Menon
parent 56c4a0224a
commit a0ef78f353
1 changed files with 5 additions and 18 deletions

View File

@ -155,8 +155,7 @@ static int omap4_l3_probe(struct platform_device *pdev)
* Setup interrupt Handlers * Setup interrupt Handlers
*/ */
l3->debug_irq = platform_get_irq(pdev, 0); l3->debug_irq = platform_get_irq(pdev, 0);
ret = request_irq(l3->debug_irq, ret = devm_request_irq(&pdev->dev, l3->debug_irq, l3_interrupt_handler,
l3_interrupt_handler,
IRQF_DISABLED, "l3-dbg-irq", l3); IRQF_DISABLED, "l3-dbg-irq", l3);
if (ret) { if (ret) {
pr_crit("L3: request_irq failed to register for 0x%x\n", pr_crit("L3: request_irq failed to register for 0x%x\n",
@ -165,29 +164,17 @@ static int omap4_l3_probe(struct platform_device *pdev)
} }
l3->app_irq = platform_get_irq(pdev, 1); l3->app_irq = platform_get_irq(pdev, 1);
ret = request_irq(l3->app_irq, ret = devm_request_irq(&pdev->dev, l3->app_irq, l3_interrupt_handler,
l3_interrupt_handler,
IRQF_DISABLED, "l3-app-irq", l3); IRQF_DISABLED, "l3-app-irq", l3);
if (ret) { if (ret)
pr_crit("L3: request_irq failed to register for 0x%x\n", pr_crit("L3: request_irq failed to register for 0x%x\n",
l3->app_irq); l3->app_irq);
goto err4;
}
return 0;
err4:
free_irq(l3->debug_irq, l3);
return ret; return ret;
} }
static int omap4_l3_remove(struct platform_device *pdev) static int omap4_l3_remove(struct platform_device *pdev)
{ {
struct omap4_l3 *l3 = platform_get_drvdata(pdev);
free_irq(l3->app_irq, l3);
free_irq(l3->debug_irq, l3);
return 0; return 0;
} }