From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Yangtao Li <tiny.windzz@gmail.com>, tglx@linutronix.de
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/3] clocksource: em_sti: convert to devm_platform_ioremap_resource
Date: Mon, 16 Dec 2019 14:44:17 +0100 [thread overview]
Message-ID: <ceabec4e-0b4b-ee31-e99b-ac62a03e3aeb@linaro.org> (raw)
In-Reply-To: <20191215151707.31264-1-tiny.windzz@gmail.com>
On 15/12/2019 16:17, Yangtao Li wrote:
> Use devm_platform_ioremap_resource() to simplify code.
Even if the change is obvious, elaborate a bit the changelog.
> BTW, do another small cleanup.
Keep one change per patch.
> Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
> ---
> drivers/clocksource/em_sti.c | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/clocksource/em_sti.c b/drivers/clocksource/em_sti.c
> index 9039df4f90e2..ab190dffb1ed 100644
> --- a/drivers/clocksource/em_sti.c
> +++ b/drivers/clocksource/em_sti.c
> @@ -279,9 +279,7 @@ 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;
> + int irq, ret;
>
> p = devm_kzalloc(&pdev->dev, sizeof(*p), GFP_KERNEL);
> if (p == NULL)
> @@ -295,8 +293,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);
>
>
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
next prev parent reply other threads:[~2019-12-16 13:44 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-15 15:17 [PATCH 1/3] clocksource: em_sti: convert to devm_platform_ioremap_resource Yangtao Li
2019-12-15 15:17 ` [PATCH 2/3] clocksource: timer-ti-dm: " Yangtao Li
2019-12-15 15:17 ` [PATCH 3/3] clocksource: timer-ti-dm: switch to platform_get_irq Yangtao Li
2019-12-16 13:44 ` Daniel Lezcano [this message]
2019-12-16 15:27 ` [PATCH 1/3] clocksource: em_sti: convert to devm_platform_ioremap_resource Frank Lee
2019-12-16 15:40 ` Daniel Lezcano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ceabec4e-0b4b-ee31-e99b-ac62a03e3aeb@linaro.org \
--to=daniel.lezcano@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tglx@linutronix.de \
--cc=tiny.windzz@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox