aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/can
diff options
context:
space:
mode:
authorYueHaibing <yuehaibing@huawei.com>2019-10-15 22:27:44 +0800
committerMarc Kleine-Budde <mkl@pengutronix.de>2019-11-11 21:58:10 +0100
commit0767bbe530c123e0945f4c4c60639005ce44fede (patch)
tree69f8f49fd943e5c2a37b692896d4a4bfc1cf478b /drivers/net/can
parentcan: rcar: use devm_platform_ioremap_resource() to simplify code (diff)
downloadlinux-dev-0767bbe530c123e0945f4c4c60639005ce44fede.tar.xz
linux-dev-0767bbe530c123e0945f4c4c60639005ce44fede.zip
can: sun4i: use devm_platform_ioremap_resource() to simplify code
Use devm_platform_ioremap_resource() to simplify the code a bit. This is detected by coccinelle. Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'drivers/net/can')
-rw-r--r--drivers/net/can/sun4i_can.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/can/sun4i_can.c b/drivers/net/can/sun4i_can.c
index f4cd88196404..e3ba8ab0cbf4 100644
--- a/drivers/net/can/sun4i_can.c
+++ b/drivers/net/can/sun4i_can.c
@@ -771,7 +771,6 @@ static int sun4ican_remove(struct platform_device *pdev)
static int sun4ican_probe(struct platform_device *pdev)
{
struct device_node *np = pdev->dev.of_node;
- struct resource *mem;
struct clk *clk;
void __iomem *addr;
int err, irq;
@@ -791,8 +790,7 @@ static int sun4ican_probe(struct platform_device *pdev)
goto exit;
}
- mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- addr = devm_ioremap_resource(&pdev->dev, mem);
+ addr = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(addr)) {
err = -EBUSY;
goto exit;