[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <157921026132.396.14041876817100272058.tip-bot2@tip-bot2>
Date: Thu, 16 Jan 2020 21:31:01 -0000
From: "tip-bot2 for Yangtao Li" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Yangtao Li <tiny.windzz@...il.com>,
Daniel Lezcano <daniel.lezcano@...aro.org>,
x86 <x86@...nel.org>, LKML <linux-kernel@...r.kernel.org>
Subject: [tip: timers/core] clocksource/drivers/em_sti: Convert to
devm_platform_ioremap_resource
The following commit has been merged into the timers/core branch of tip:
Commit-ID: 9a97b2fb070d497c683aed9fb86b7ec5245cea86
Gitweb: https://git.kernel.org/tip/9a97b2fb070d497c683aed9fb86b7ec5245cea86
Author: Yangtao Li <tiny.windzz@...il.com>
AuthorDate: Sat, 21 Dec 2019 17:30:24
Committer: Daniel Lezcano <daniel.lezcano@...aro.org>
CommitterDate: Thu, 16 Jan 2020 19:06:57 +01:00
clocksource/drivers/em_sti: Convert to devm_platform_ioremap_resource
Use devm_platform_ioremap_resource() to simplify code, which
wraps 'platform_get_resource' and 'devm_ioremap_resource' in a
single helper.
Signed-off-by: Yangtao Li <tiny.windzz@...il.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@...aro.org>
Link: https://lore.kernel.org/r/20191221173027.30716-2-tiny.windzz@gmail.com
---
drivers/clocksource/em_sti.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/clocksource/em_sti.c b/drivers/clocksource/em_sti.c
index 9039df4..086fd5d 100644
--- a/drivers/clocksource/em_sti.c
+++ b/drivers/clocksource/em_sti.c
@@ -279,7 +279,6 @@ static void em_sti_register_clockevent(struct em_sti_priv *p)
static int em_sti_probe(struct platform_device *pdev)
{
struct em_sti_priv *p;
- struct resource *res;
int irq;
int ret;
@@ -295,8 +294,7 @@ static int em_sti_probe(struct platform_device *pdev)
return irq;
/* map memory, let base point to the STI instance */
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- p->base = devm_ioremap_resource(&pdev->dev, res);
+ p->base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(p->base))
return PTR_ERR(p->base);
Powered by blists - more mailing lists