|
@@ -212,9 +212,9 @@ static int at91_reset_platform_probe(struct platform_device *pdev)
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, idx + 1 );
|
|
|
at91_ramc_base[idx] = devm_ioremap(&pdev->dev, res->start,
|
|
|
resource_size(res));
|
|
|
- if (IS_ERR(at91_ramc_base[idx])) {
|
|
|
+ if (!at91_ramc_base[idx]) {
|
|
|
dev_err(&pdev->dev, "Could not map ram controller address\n");
|
|
|
- return PTR_ERR(at91_ramc_base[idx]);
|
|
|
+ return -ENOMEM;
|
|
|
}
|
|
|
}
|
|
|
|