提交 f670758f 编写于 作者: T Tushar Behera 提交者: David S. Miller

sparc,leon: Convert to use devm_ioremap_resource

Commit 75096579 ("lib: devres: Introduce devm_ioremap_resource()")
introduced devm_ioremap_resource() and deprecated the use of
devm_request_and_ioremap().

While at it, also remove the error message as devm_ioremap_resource()
also prints similar error message.
Signed-off-by: NTushar Behera <tushar.behera@linaro.org>
CC: sparclinux@vger.kernel.org
CC: "David S. Miller" <davem@davemloft.net>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 771a37ff
...@@ -536,11 +536,9 @@ static int grpci1_of_probe(struct platform_device *ofdev) ...@@ -536,11 +536,9 @@ static int grpci1_of_probe(struct platform_device *ofdev)
/* find device register base address */ /* find device register base address */
res = platform_get_resource(ofdev, IORESOURCE_MEM, 0); res = platform_get_resource(ofdev, IORESOURCE_MEM, 0);
regs = devm_request_and_ioremap(&ofdev->dev, res); regs = devm_ioremap_resource(&ofdev->dev, res);
if (!regs) { if (IS_ERR(regs))
dev_err(&ofdev->dev, "io-regs mapping failed\n"); return PTR_ERR(regs);
return -EADDRNOTAVAIL;
}
/* /*
* check that we're in Host Slot and that we can act as a Host Bridge * check that we're in Host Slot and that we can act as a Host Bridge
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册