All of lore.kernel.org
 help / color / mirror / Atom feed
From: sergei.shtylyov@cogentembedded.com (Sergei Shtylyov)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 1/3] usb: ohci-at91: replace request_mem_region + ioremap by devm_ioremap_resource
Date: Sun, 08 Dec 2013 21:31:18 +0300	[thread overview]
Message-ID: <52A4BAF6.501@cogentembedded.com> (raw)
In-Reply-To: <1386514980-6383-2-git-send-email-b.brezillon@overkiz.com>

Hello.

On 12/08/2013 06:02 PM, Boris BREZILLON wrote:

> Replace the request_mem_region + ioremap calls by the
> devm_ioremap_resource call which does the same things but with device
> managed resources.

> Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
> ---
>   drivers/usb/host/ohci-at91.c |   28 +++++++---------------------
>   1 file changed, 7 insertions(+), 21 deletions(-)

> diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c
> index 8c356af..fe2ecc5 100644
> --- a/drivers/usb/host/ohci-at91.c
> +++ b/drivers/usb/host/ohci-at91.c
> @@ -158,24 +158,18 @@ static int usb_hcd_at91_probe(const struct hc_driver *driver,
>   	hcd->rsrc_start = res->start;
>   	hcd->rsrc_len = resource_size(res);
>
> -	if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
> -		pr_debug("request_mem_region failed\n");
> -		retval = -EBUSY;
> -		goto err1;
> -	}
> -
> -	hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
> -	if (!hcd->regs) {
> -		pr_debug("ioremap failed\n");
> -		retval = -EIO;
> -		goto err2;
> +	hcd->regs = devm_ioremap_resource(dev, res);
> +	if (IS_ERR(hcd->regs)) {
> +		dev_dbg(dev, "devm_ioremap_resource failed\n");

    I've already told you devm_ioremap_resource() prints the detailed error 
message. No need to duplicate it.

> +		retval = PTR_ERR(hcd->regs);
> +		goto err;
>   	}

WBR, Sergei

WARNING: multiple messages have this Message-ID (diff)
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Boris BREZILLON <b.brezillon@overkiz.com>,
	Douglas Gilbert <dgilbert@interlog.com>,
	Nicolas Ferre <nicolas.ferre@atmel.com>,
	Tomasz Figa <tomasz.figa@gmail.com>,
	Alan Stern <stern@rowland.harvard.edu>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Grant Likely <grant.likely@linaro.org>,
	linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v4 1/3] usb: ohci-at91: replace request_mem_region + ioremap by devm_ioremap_resource
Date: Sun, 08 Dec 2013 21:31:18 +0300	[thread overview]
Message-ID: <52A4BAF6.501@cogentembedded.com> (raw)
In-Reply-To: <1386514980-6383-2-git-send-email-b.brezillon@overkiz.com>

Hello.

On 12/08/2013 06:02 PM, Boris BREZILLON wrote:

> Replace the request_mem_region + ioremap calls by the
> devm_ioremap_resource call which does the same things but with device
> managed resources.

> Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
> ---
>   drivers/usb/host/ohci-at91.c |   28 +++++++---------------------
>   1 file changed, 7 insertions(+), 21 deletions(-)

> diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c
> index 8c356af..fe2ecc5 100644
> --- a/drivers/usb/host/ohci-at91.c
> +++ b/drivers/usb/host/ohci-at91.c
> @@ -158,24 +158,18 @@ static int usb_hcd_at91_probe(const struct hc_driver *driver,
>   	hcd->rsrc_start = res->start;
>   	hcd->rsrc_len = resource_size(res);
>
> -	if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
> -		pr_debug("request_mem_region failed\n");
> -		retval = -EBUSY;
> -		goto err1;
> -	}
> -
> -	hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
> -	if (!hcd->regs) {
> -		pr_debug("ioremap failed\n");
> -		retval = -EIO;
> -		goto err2;
> +	hcd->regs = devm_ioremap_resource(dev, res);
> +	if (IS_ERR(hcd->regs)) {
> +		dev_dbg(dev, "devm_ioremap_resource failed\n");

    I've already told you devm_ioremap_resource() prints the detailed error 
message. No need to duplicate it.

> +		retval = PTR_ERR(hcd->regs);
> +		goto err;
>   	}

WBR, Sergei


  reply	other threads:[~2013-12-08 18:31 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-08 15:02 [PATCH v4 0/3] usb: ohci-at91: various improvements Boris BREZILLON
2013-12-08 15:02 ` Boris BREZILLON
2013-12-08 15:02 ` [PATCH v4 1/3] usb: ohci-at91: replace request_mem_region + ioremap by devm_ioremap_resource Boris BREZILLON
2013-12-08 15:02   ` Boris BREZILLON
2013-12-08 18:31   ` Sergei Shtylyov [this message]
2013-12-08 18:31     ` Sergei Shtylyov
2013-12-08 18:52     ` boris brezillon
2013-12-08 18:52       ` boris brezillon
2013-12-08 15:02 ` [PATCH v4 2/3] usb: ohci-at91: use dev variable instead of &pdev->dev Boris BREZILLON
2013-12-08 15:02   ` Boris BREZILLON
2013-12-08 15:03 ` [PATCH v4 3/3] usb: ohci-at91: use device managed clk retrieval Boris BREZILLON
2013-12-08 15:03   ` Boris BREZILLON

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=52A4BAF6.501@cogentembedded.com \
    --to=sergei.shtylyov@cogentembedded.com \
    --cc=linux-arm-kernel@lists.infradead.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.