From: Sergei Shtylyov <sshtylyov@mvista.com>
To: Roger Quadros <rogerq@ti.com>
Cc: balbi@ti.com, keshava_mgowda@ti.com, bjorn@mork.no,
linux-usb@vger.kernel.org, linux-omap@vger.kernel.org
Subject: Re: [PATCH v3 04/23] mfd: omap-usb-tll: Use devm_kzalloc/ioremap and clean up error path
Date: Wed, 05 Dec 2012 18:08:22 +0400 [thread overview]
Message-ID: <50BF5556.4020500@mvista.com> (raw)
In-Reply-To: <1354630396-24545-5-git-send-email-rogerq@ti.com>
Hello.
On 04-12-2012 18:12, Roger Quadros wrote:
> Use devm_ variants of kzalloc() and ioremap(). Simplify the error path.
> Signed-off-by: Roger Quadros <rogerq@ti.com>
> ---
> drivers/mfd/omap-usb-tll.c | 37 +++++++++++--------------------------
> 1 files changed, 11 insertions(+), 26 deletions(-)
> diff --git a/drivers/mfd/omap-usb-tll.c b/drivers/mfd/omap-usb-tll.c
> index e67cafc..828207f 100644
> --- a/drivers/mfd/omap-usb-tll.c
> +++ b/drivers/mfd/omap-usb-tll.c
[...]
> @@ -230,28 +229,21 @@ static int __devinit usbtll_omap_probe(struct platform_device *pdev)
> if (IS_ERR(tll->usbtll_p1_fck)) {
> ret = PTR_ERR(tll->usbtll_p1_fck);
> dev_err(dev, "usbtll_p1_fck failed error:%d\n", ret);
> - goto err_tll;
> + return ret;
> }
>
> tll->usbtll_p2_fck = clk_get(dev, "usb_tll_hs_usb_ch1_clk");
> if (IS_ERR(tll->usbtll_p2_fck)) {
> ret = PTR_ERR(tll->usbtll_p2_fck);
> dev_err(dev, "usbtll_p2_fck failed error:%d\n", ret);
> - goto err_usbtll_p1_fck;
> + goto err_p2_fck;
> }
>
> res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> - if (!res) {
> - dev_err(dev, "usb tll get resource failed\n");
> - ret = -ENODEV;
> - goto err_usbtll_p2_fck;
> - }
Not clear why you removed the error check...
> -
> - base = ioremap(res->start, resource_size(res));
> + base = devm_request_and_ioremap(dev, res);
> if (!base) {
> - dev_err(dev, "TLL ioremap failed\n");
> - ret = -ENOMEM;
> - goto err_usbtll_p2_fck;
> + ret = -EADDRNOTAVAIL;
Why you changed this from ENOMEM?
WBR, Sergei
next prev parent reply other threads:[~2012-12-05 14:09 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-04 14:12 [PATCH v3 00/23] OMAP USB Host cleanup Roger Quadros
2012-12-04 14:12 ` [PATCH v3 01/23] mfd: omap-usb-host: get rid of cpu_is_omap..() macros Roger Quadros
2012-12-05 18:42 ` Tony Lindgren
2012-12-10 9:34 ` Roger Quadros
[not found] ` <1354630396-24545-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2012-12-04 14:12 ` [PATCH v3 02/23] mfd: omap-usb-tll: Avoid creating copy of platform data Roger Quadros
2012-12-04 14:12 ` [PATCH v3 03/23] mfd: omap-usb-tll: Fix channel count detection Roger Quadros
2012-12-04 14:12 ` [PATCH v3 04/23] mfd: omap-usb-tll: Use devm_kzalloc/ioremap and clean up error path Roger Quadros
2012-12-05 14:08 ` Sergei Shtylyov [this message]
[not found] ` <50BF5556.4020500-Igf4POYTYCDQT0dZR+AlfA@public.gmane.org>
2012-12-05 14:17 ` Roger Quadros
2012-12-04 14:12 ` [PATCH v3 05/23] mfd: omap-usb-tll: Clean up clock handling Roger Quadros
2012-12-04 14:13 ` [PATCH v3 11/23] mfd: omap_usb_host: Avoid creating copy of platform_data Roger Quadros
2012-12-04 14:13 ` [PATCH v3 12/23] mfd: omap-usb-host: Use devm_kzalloc() and devm_request_and_ioremap() Roger Quadros
2012-12-04 14:13 ` [PATCH v3 13/23] mfd: omap-usb-host: know about number of ports from revision register Roger Quadros
2012-12-04 14:13 ` [PATCH v3 14/23] mfd: omap-usb-host: override number of ports from platform data Roger Quadros
2012-12-04 14:12 ` [PATCH v3 06/23] mfd: omap-usb-tll: introduce and use mode_needs_tll() Roger Quadros
2012-12-04 14:13 ` [PATCH v3 07/23] mfd: omap-usb-tll: Check for missing platform data in probe Roger Quadros
2012-12-04 14:13 ` [PATCH v3 08/23] mfd: omap-usb-tll: Fix error message Roger Quadros
2012-12-04 14:13 ` [PATCH v3 09/23] mfd: omap-usb-tll: serialize access to TLL device Roger Quadros
2012-12-04 14:13 ` [PATCH v3 10/23] mfd: omap-usb-tll: Add OMAP5 revision and HSIC support Roger Quadros
2012-12-04 14:13 ` [PATCH v3 15/23] mfd: omap-usb-host: cleanup clock management code Roger Quadros
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=50BF5556.4020500@mvista.com \
--to=sshtylyov@mvista.com \
--cc=balbi@ti.com \
--cc=bjorn@mork.no \
--cc=keshava_mgowda@ti.com \
--cc=linux-omap@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=rogerq@ti.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 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.