|
@@ -1543,12 +1543,6 @@ static int at91_gpio_probe(struct platform_device *pdev)
|
|
|
goto err;
|
|
|
}
|
|
|
|
|
|
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
|
- if (!res) {
|
|
|
- ret = -ENOENT;
|
|
|
- goto err;
|
|
|
- }
|
|
|
-
|
|
|
irq = platform_get_irq(pdev, 0);
|
|
|
if (irq < 0) {
|
|
|
ret = irq;
|
|
@@ -1561,6 +1555,7 @@ static int at91_gpio_probe(struct platform_device *pdev)
|
|
|
goto err;
|
|
|
}
|
|
|
|
|
|
+ res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
|
at91_chip->regbase = devm_ioremap_resource(&pdev->dev, res);
|
|
|
if (IS_ERR(at91_chip->regbase)) {
|
|
|
ret = PTR_ERR(at91_chip->regbase);
|