From: Anton Vorontsov <anton@enomsg.org>
To: Andrei Epure <epure.andrei@gmail.com>
Cc: dwmw2@infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] power: resource_size() instead of computation
Date: Sun, 31 Mar 2013 23:41:03 -0700 [thread overview]
Message-ID: <20130401064103.GD13441@lizard> (raw)
In-Reply-To: <1364421227-11178-1-git-send-email-epure.andrei@gmail.com>
On Wed, Mar 27, 2013 at 11:53:47PM +0200, Andrei Epure wrote:
> Patch found using coccinelle.
>
> Signed-off-by: Andrei Epure <epure.andrei@gmail.com>
> ---
Silviu-Mihai Popescu sent a similar patch ealier, but I added your
Signed-off-by to the commit.
> drivers/power/goldfish_battery.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/power/goldfish_battery.c b/drivers/power/goldfish_battery.c
> index c10f460..29eba88 100644
> --- a/drivers/power/goldfish_battery.c
> +++ b/drivers/power/goldfish_battery.c
> @@ -178,7 +178,7 @@ static int goldfish_battery_probe(struct platform_device *pdev)
> return -ENODEV;
> }
>
> - data->reg_base = devm_ioremap(&pdev->dev, r->start, r->end - r->start + 1);
> + data->reg_base = devm_ioremap(&pdev->dev, r->start, resource_size(r));
> if (data->reg_base == NULL) {
> dev_err(&pdev->dev, "unable to remap MMIO\n");
> return -ENOMEM;
> --
> 1.7.9.5
prev parent reply other threads:[~2013-04-01 6:45 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-27 21:53 [PATCH] power: resource_size() instead of computation Andrei Epure
2013-04-01 6:41 ` Anton Vorontsov [this message]
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=20130401064103.GD13441@lizard \
--to=anton@enomsg.org \
--cc=dwmw2@infradead.org \
--cc=epure.andrei@gmail.com \
--cc=linux-kernel@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.