|
@@ -536,11 +536,9 @@ static int grpci1_of_probe(struct platform_device *ofdev)
|
|
|
|
|
|
/* find device register base address */
|
|
|
res = platform_get_resource(ofdev, IORESOURCE_MEM, 0);
|
|
|
- regs = devm_request_and_ioremap(&ofdev->dev, res);
|
|
|
- if (!regs) {
|
|
|
- dev_err(&ofdev->dev, "io-regs mapping failed\n");
|
|
|
- return -EADDRNOTAVAIL;
|
|
|
- }
|
|
|
+ regs = devm_ioremap_resource(&ofdev->dev, res);
|
|
|
+ if (IS_ERR(regs))
|
|
|
+ return PTR_ERR(regs);
|
|
|
|
|
|
/*
|
|
|
* check that we're in Host Slot and that we can act as a Host Bridge
|