[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20191006102953.57536-35-yuehaibing@huawei.com>
Date: Sun, 6 Oct 2019 18:29:53 +0800
From: YueHaibing <yuehaibing@...wei.com>
To: <a.zummo@...ertech.it>, <alexandre.belloni@...tlin.com>,
<joel@....id.au>, <andrew@...id.au>, <nicolas.ferre@...rochip.com>,
<ludovic.desroches@...rochip.com>, <computersforpeace@...il.com>,
<gregory.0xf0@...il.com>, <f.fainelli@...il.com>,
<bcm-kernel-feedback-list@...adcom.com>,
<linus.walleij@...aro.org>, <baruch@...s.co.il>,
<paul@...pouillou.net>, <vz@...ia.com>, <slemieux.tyco@...il.com>,
<khilman@...libre.com>, <eddie.huang@...iatek.com>,
<sean.wang@...iatek.com>, <matthias.bgg@...il.com>,
<patrice.chotard@...com>, <mcoquelin.stm32@...il.com>,
<alexandre.torgue@...com>, <mripard@...nel.org>, <wens@...e.org>,
<thierry.reding@...il.com>, <jonathanh@...dia.com>,
<linux@...sktech.co.nz>, <michal.simek@...inx.com>
CC: <linux-rtc@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<linux-arm-kernel@...ts.infradead.org>,
<linux-aspeed@...ts.ozlabs.org>,
<linux-amlogic@...ts.infradead.org>,
<linux-mediatek@...ts.infradead.org>,
<linux-stm32@...md-mailman.stormreply.com>,
<linux-tegra@...r.kernel.org>, YueHaibing <yuehaibing@...wei.com>
Subject: [PATCH -next 34/34] rtc: zynqmp: 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@...wei.com>
---
drivers/rtc/rtc-zynqmp.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/rtc/rtc-zynqmp.c b/drivers/rtc/rtc-zynqmp.c
index 2c76275..55646e0 100644
--- a/drivers/rtc/rtc-zynqmp.c
+++ b/drivers/rtc/rtc-zynqmp.c
@@ -195,7 +195,6 @@ static irqreturn_t xlnx_rtc_interrupt(int irq, void *id)
static int xlnx_rtc_probe(struct platform_device *pdev)
{
struct xlnx_rtc_dev *xrtcdev;
- struct resource *res;
int ret;
xrtcdev = devm_kzalloc(&pdev->dev, sizeof(*xrtcdev), GFP_KERNEL);
@@ -211,9 +210,7 @@ static int xlnx_rtc_probe(struct platform_device *pdev)
xrtcdev->rtc->ops = &xlnx_rtc_ops;
xrtcdev->rtc->range_max = U32_MAX;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-
- xrtcdev->reg_base = devm_ioremap_resource(&pdev->dev, res);
+ xrtcdev->reg_base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(xrtcdev->reg_base))
return PTR_ERR(xrtcdev->reg_base);
--
2.7.4
Powered by blists - more mailing lists