aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bus
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/bus')
-rw-r--r--drivers/bus/omap_l3_noc.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/bus/omap_l3_noc.c b/drivers/bus/omap_l3_noc.c
index 0eff48585ae3..972691a668a3 100644
--- a/drivers/bus/omap_l3_noc.c
+++ b/drivers/bus/omap_l3_noc.c
@@ -158,8 +158,8 @@ static int omap4_l3_probe(struct platform_device *pdev)
158 ret = devm_request_irq(&pdev->dev, l3->debug_irq, l3_interrupt_handler, 158 ret = devm_request_irq(&pdev->dev, l3->debug_irq, l3_interrupt_handler,
159 IRQF_DISABLED, "l3-dbg-irq", l3); 159 IRQF_DISABLED, "l3-dbg-irq", l3);
160 if (ret) { 160 if (ret) {
161 pr_crit("L3: request_irq failed to register for 0x%x\n", 161 dev_err(&pdev->dev, "request_irq failed for %d\n",
162 l3->debug_irq); 162 l3->debug_irq);
163 return ret; 163 return ret;
164 } 164 }
165 165
@@ -167,8 +167,7 @@ static int omap4_l3_probe(struct platform_device *pdev)
167 ret = devm_request_irq(&pdev->dev, l3->app_irq, l3_interrupt_handler, 167 ret = devm_request_irq(&pdev->dev, l3->app_irq, l3_interrupt_handler,
168 IRQF_DISABLED, "l3-app-irq", l3); 168 IRQF_DISABLED, "l3-app-irq", l3);
169 if (ret) 169 if (ret)
170 pr_crit("L3: request_irq failed to register for 0x%x\n", 170 dev_err(&pdev->dev, "request_irq failed for %d\n", l3->app_irq);
171 l3->app_irq);
172 171
173 return ret; 172 return ret;
174} 173}