From: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
To: Julia Lawall <julia-dAYI7NvHqcQ@public.gmane.org>
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
kernel-janitors-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Linus Walleij
<linus.walleij-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org>,
Rob Herring <rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org>,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 1/6] drivers/gpio/gpio-tegra.c: use devm_request_and_ioremap
Date: Mon, 2 Jan 2012 01:44:39 -0700 [thread overview]
Message-ID: <20120102084439.GI18381@ponder.secretlab.ca> (raw)
In-Reply-To: <1324994491-21828-2-git-send-email-julia-dAYI7NvHqcQ@public.gmane.org>
On Tue, Dec 27, 2011 at 03:01:26PM +0100, Julia Lawall wrote:
> From: Julia Lawall <julia-dAYI7NvHqcQ@public.gmane.org>
Merged, thanks.
g.
>
> Reimplement a call to devm_request_mem_region followed by a call to ioremap
> or ioremap_nocache by a call to devm_request_and_ioremap.
>
> The semantic patch that makes this transformation is as follows:
> (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @nm@
> expression myname;
> identifier i;
> @@
>
> struct platform_driver i = { .driver = { .name = myname } };
>
> @@
> expression dev,res,size;
> expression nm.myname;
> @@
>
> -if (!devm_request_mem_region(dev, res->start, size,
> - \(res->name\|dev_name(dev)\|myname\))) {
> - ...
> - return ...;
> -}
> ... when != res->start
> (
> -devm_ioremap(dev,res->start,size)
> +devm_request_and_ioremap(dev,res)
> |
> -devm_ioremap_nocache(dev,res->start,size)
> +devm_request_and_ioremap(dev,res)
> )
> ... when any
> when != res->start
> // </smpl>
>
> Signed-off-by: Julia Lawall <julia-dAYI7NvHqcQ@public.gmane.org>
>
> ---
> drivers/gpio/gpio-tegra.c | 9 +--------
> 1 file changed, 1 insertion(+), 8 deletions(-)
>
> diff --git a/drivers/gpio/gpio-tegra.c b/drivers/gpio/gpio-tegra.c
> index 61044c8..bdc2937 100644
> --- a/drivers/gpio/gpio-tegra.c
> +++ b/drivers/gpio/gpio-tegra.c
> @@ -361,14 +361,7 @@ static int __devinit tegra_gpio_probe(struct platform_device *pdev)
> return -ENODEV;
> }
>
> - if (!devm_request_mem_region(&pdev->dev, res->start,
> - resource_size(res),
> - dev_name(&pdev->dev))) {
> - dev_err(&pdev->dev, "Couldn't request MEM resource\n");
> - return -ENODEV;
> - }
> -
> - regs = devm_ioremap(&pdev->dev, res->start, resource_size(res));
> + regs = devm_request_and_ioremap(&pdev->dev, res);
> if (!regs) {
> dev_err(&pdev->dev, "Couldn't ioremap regs\n");
> return -ENODEV;
>
next prev parent reply other threads:[~2012-01-02 8:44 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1324994491-21828-1-git-send-email-julia@diku.dk>
2011-12-27 14:01 ` [PATCH 1/6] drivers/gpio/gpio-tegra.c: use devm_request_and_ioremap Julia Lawall
[not found] ` <1324994491-21828-2-git-send-email-julia-dAYI7NvHqcQ@public.gmane.org>
2012-01-02 8:44 ` Grant Likely [this message]
2011-12-27 14:01 ` [PATCH 3/6] drivers/watchdog/imx2_wdt.c: " Julia Lawall
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=20120102084439.GI18381@ponder.secretlab.ca \
--to=grant.likely-s3s/wqlpoipyb63q8fvjnq@public.gmane.org \
--cc=devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org \
--cc=julia-dAYI7NvHqcQ@public.gmane.org \
--cc=kernel-janitors-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linus.walleij-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).