From: Thierry Reding <thierry.reding@avionic-design.de>
To: Axel Lin <axel.lin@gmail.com>
Cc: linux-kernel@vger.kernel.org, Alexey Charkov <alchark@gmail.com>
Subject: Re: [PATCH 4/4] pwm: Convert pwm-vt8500 to use devm_* APIs
Date: Sat, 30 Jun 2012 21:45:28 +0200 [thread overview]
Message-ID: <20120630194528.GA24411@avionic-0098.mockup.avionic-design.de> (raw)
In-Reply-To: <1340976785.4752.3.camel@phoenix>
[-- Attachment #1: Type: text/plain, Size: 1618 bytes --]
On Fri, Jun 29, 2012 at 09:33:05PM +0800, Axel Lin wrote:
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
> ---
> drivers/pwm/pwm-vt8500.c | 45 ++++++++-------------------------------------
> 1 file changed, 8 insertions(+), 37 deletions(-)
>
> diff --git a/drivers/pwm/pwm-vt8500.c b/drivers/pwm/pwm-vt8500.c
[...]
> @@ -127,44 +127,24 @@ static int __devinit pwm_probe(struct platform_device *pdev)
> r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> if (r == NULL) {
> dev_err(&pdev->dev, "no memory resource defined\n");
> - ret = -ENODEV;
> - goto err_free;
> - }
> -
> - r = request_mem_region(r->start, resource_size(r), pdev->name);
> - if (r == NULL) {
> - dev_err(&pdev->dev, "failed to request memory resource\n");
> - ret = -EBUSY;
> - goto err_free;
> + return -ENODEV;
> }
>
> - chip->base = ioremap(r->start, resource_size(r));
> - if (chip->base == NULL) {
> - dev_err(&pdev->dev, "failed to ioremap() registers\n");
> - ret = -ENODEV;
> - goto err_free_mem;
> - }
> + chip->base = devm_request_and_ioremap(&pdev->dev, r);
> + if (chip->base == NULL)
> + return -ENODEV;
EADDRNOTAVAIL as well.
> @@ -172,16 +152,7 @@ static int __devexit pwm_remove(struct platform_device *pdev)
> return -ENODEV;
>
> err = pwmchip_remove(&chip->chip);
> - if (err < 0)
> - return err;
> -
> - iounmap(chip->base);
> -
> - r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> - release_mem_region(r->start, resource_size(r));
> -
> - kfree(chip);
> - return 0;
> + return err;
And merge these two remaining lines.
Thierry
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
next prev parent reply other threads:[~2012-06-30 19:45 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-29 13:30 [PATCH 1/4] pwm: Convert pwm-imx to use devm_* APIs Axel Lin
2012-06-29 13:31 ` [PATCH 2/4] pwm: Convert pwm-pxa " Axel Lin
2012-06-30 19:38 ` Thierry Reding
2012-06-29 13:32 ` [PATCH 3/4] pwm: Convert pwm-samsung " Axel Lin
2012-07-02 20:57 ` Thierry Reding
2012-06-29 13:33 ` [PATCH 4/4] pwm: Convert pwm-vt8500 " Axel Lin
2012-06-30 19:45 ` Thierry Reding [this message]
2012-06-30 18:43 ` [PATCH 1/4] pwm: Convert pwm-imx " Thierry Reding
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=20120630194528.GA24411@avionic-0098.mockup.avionic-design.de \
--to=thierry.reding@avionic-design.de \
--cc=alchark@gmail.com \
--cc=axel.lin@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox