From: Hans de Goede <hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Alan Stern <stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz@public.gmane.org>
Cc: Greg Kroah-Hartman
<gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>,
Philipp Zabel <p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>,
Tony Prisk <linux-ci5G2KO2hbZ+pU9mqzGVBQ@public.gmane.org>,
Florian Fainelli
<f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
Maxime Ripard
<maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>,
linux-usb <linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
devicetree <devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH] ehci-platform: Add support for shared reset controllers
Date: Wed, 8 Jun 2016 22:07:57 +0200 [thread overview]
Message-ID: <2aef5d1f-6bc8-3acd-543a-8bb0f87702a2@redhat.com> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1606081346340.2191-100000-IYeN2dnnYyZXsRXLowluHWD2FQJk+8+b@public.gmane.org>
Hi,
On 08-06-16 19:47, Alan Stern wrote:
> On Wed, 8 Jun 2016, Hans de Goede wrote:
>
>> Add support for shared platform controllers by using
>> devm_reset_control_get_shared_by_index instead of
>> of_reset_control_get_by_index.
>>
>> Note we use the devm function because there is no
>> of_reset_control_get_shared_by_index, this also leads
>> to a nice cleanup of the cleanup code.
>>
>> This brings the ehci-platform reset handling code inline
>> with ohci-platform.
>>
>> Signed-off-by: Hans de Goede <hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
>> ---
>
> This is just the difference between what Greg has merged and what you
> wanted to add, right? If so, then
Right.
Regards,
Hans
>
> Acked-by: Alan Stern <stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz@public.gmane.org>
>
> Alan Stern
>
>> drivers/usb/host/ehci-platform.c | 16 +++++-----------
>> 1 file changed, 5 insertions(+), 11 deletions(-)
>>
>> diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c
>> index bc33f45..6816b8c 100644
>> --- a/drivers/usb/host/ehci-platform.c
>> +++ b/drivers/usb/host/ehci-platform.c
>> @@ -236,8 +236,8 @@ static int ehci_platform_probe(struct platform_device *dev)
>> }
>>
>> for (rst = 0; rst < EHCI_MAX_RSTS; rst++) {
>> - priv->rsts[rst] = of_reset_control_get_by_index(
>> - dev->dev.of_node, rst);
>> + priv->rsts[rst] = devm_reset_control_get_shared_by_index(
>> + &dev->dev, rst);
>> if (IS_ERR(priv->rsts[rst])) {
>> err = PTR_ERR(priv->rsts[rst]);
>> if (err == -EPROBE_DEFER)
>> @@ -247,10 +247,8 @@ static int ehci_platform_probe(struct platform_device *dev)
>> }
>>
>> err = reset_control_deassert(priv->rsts[rst]);
>> - if (err) {
>> - reset_control_put(priv->rsts[rst]);
>> + if (err)
>> goto err_reset;
>> - }
>> }
>>
>> if (pdata->big_endian_desc)
>> @@ -307,10 +305,8 @@ err_power:
>> if (pdata->power_off)
>> pdata->power_off(dev);
>> err_reset:
>> - while (--rst >= 0) {
>> + while (--rst >= 0)
>> reset_control_assert(priv->rsts[rst]);
>> - reset_control_put(priv->rsts[rst]);
>> - }
>> err_put_clks:
>> while (--clk >= 0)
>> clk_put(priv->clks[clk]);
>> @@ -335,10 +331,8 @@ static int ehci_platform_remove(struct platform_device *dev)
>> if (pdata->power_off)
>> pdata->power_off(dev);
>>
>> - for (rst = 0; rst < EHCI_MAX_RSTS && priv->rsts[rst]; rst++) {
>> + for (rst = 0; rst < EHCI_MAX_RSTS && priv->rsts[rst]; rst++)
>> reset_control_assert(priv->rsts[rst]);
>> - reset_control_put(priv->rsts[rst]);
>> - }
>>
>> for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++)
>> clk_put(priv->clks[clk]);
>>
>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2016-06-08 20:07 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-08 16:54 [PATCH] ehci-platform: Add support for shared reset controllers Hans de Goede
2016-06-08 17:47 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.1606081346340.2191-100000-IYeN2dnnYyZXsRXLowluHWD2FQJk+8+b@public.gmane.org>
2016-06-08 20:07 ` Hans de Goede [this message]
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=2aef5d1f-6bc8-3acd-543a-8bb0f87702a2@redhat.com \
--to=hdegoede-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-ci5G2KO2hbZ+pU9mqzGVBQ@public.gmane.org \
--cc=linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org \
--cc=p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org \
--cc=stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz@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).