|
@@ -410,13 +410,6 @@ static int __init dra7xx_pcie_probe(struct platform_device *pdev)
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- ret = devm_request_irq(dev, irq, dra7xx_pcie_irq_handler,
|
|
|
- IRQF_SHARED, "dra7xx-pcie-main", dra7xx);
|
|
|
- if (ret) {
|
|
|
- dev_err(dev, "failed to request irq\n");
|
|
|
- return ret;
|
|
|
- }
|
|
|
-
|
|
|
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ti_conf");
|
|
|
base = devm_ioremap_nocache(dev, res->start, resource_size(res));
|
|
|
if (!base)
|
|
@@ -478,6 +471,13 @@ static int __init dra7xx_pcie_probe(struct platform_device *pdev)
|
|
|
if (ret < 0)
|
|
|
goto err_gpio;
|
|
|
|
|
|
+ ret = devm_request_irq(dev, irq, dra7xx_pcie_irq_handler,
|
|
|
+ IRQF_SHARED, "dra7xx-pcie-main", dra7xx);
|
|
|
+ if (ret) {
|
|
|
+ dev_err(dev, "failed to request irq\n");
|
|
|
+ goto err_gpio;
|
|
|
+ }
|
|
|
+
|
|
|
return 0;
|
|
|
|
|
|
err_gpio:
|