From: Roger Quadros <rogerq-l0cyMroinI0@public.gmane.org>
To: Sergei Shtylyov <sshtylyov-Igf4POYTYCDQT0dZR+AlfA@public.gmane.org>
Cc: balbi-l0cyMroinI0@public.gmane.org,
keshava_mgowda-l0cyMroinI0@public.gmane.org,
bjorn-yOkvZcmFvRU@public.gmane.org,
linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH v3 04/23] mfd: omap-usb-tll: Use devm_kzalloc/ioremap and clean up error path
Date: Wed, 5 Dec 2012 16:17:03 +0200 [thread overview]
Message-ID: <50BF575F.5080602@ti.com> (raw)
In-Reply-To: <50BF5556.4020500-Igf4POYTYCDQT0dZR+AlfA@public.gmane.org>
On 12/05/2012 04:08 PM, Sergei Shtylyov wrote:
> 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-l0cyMroinI0@public.gmane.org>
>> ---
>> 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...
>
It is because devm_request_and_ioremap does it for you.
http://lxr.free-electrons.com/source/lib/devres.c#L88
>> -
>> - 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?
as per the documentation for devm_request_and_ioremap() in the
same link I sent above.
cheers,
-roger
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2012-12-05 14:17 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
[not found] ` <50BF5556.4020500-Igf4POYTYCDQT0dZR+AlfA@public.gmane.org>
2012-12-05 14:17 ` Roger Quadros [this message]
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=50BF575F.5080602@ti.com \
--to=rogerq-l0cymroini0@public.gmane.org \
--cc=balbi-l0cyMroinI0@public.gmane.org \
--cc=bjorn-yOkvZcmFvRU@public.gmane.org \
--cc=keshava_mgowda-l0cyMroinI0@public.gmane.org \
--cc=linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=sshtylyov-Igf4POYTYCDQT0dZR+AlfA@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