From: maxime.ripard@free-electrons.com (Maxime Ripard)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 4/7] usb: ehci-platform: add optional reset controller retrieval
Date: Mon, 12 May 2014 16:30:52 +0200 [thread overview]
Message-ID: <20140512143052.GA17154@lukather> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1405101023510.1268-100000@netrider.rowland.org>
Hi Alan,
On Sat, May 10, 2014 at 10:35:49AM -0400, Alan Stern wrote:
> > @@ -206,6 +208,19 @@ static int ehci_platform_probe(struct platform_device *dev)
> > break;
> > }
> > }
> > +
> > + priv->rst = devm_reset_control_get_optional(&dev->dev,
> > + NULL);
>
> I hate the style that matches arguments on a continuation line with the
> opening paren of the function call, for a couple of reasons. Instead I
> simply indent continuation lines by two or more tab stops. But some
> people seem to be incurably attached to it.
Ok, I'll change it.
> > + if (IS_ERR(priv->rst)) {
> > + err = PTR_ERR(priv->rst);
> > + if (err == -EPROBE_DEFER)
> > + goto err_put_clks;
> > + priv->rst = NULL;
> > + } else {
> > + err = reset_control_deassert(priv->rst);
> > + if (err)
> > + goto err_put_clks;
> > + }
> > }
> >
> > if (pdata->big_endian_desc)
>
> The new code was added inside an "if" statement, which will cause it to
> apply only to OF devices. Is there any reason not to put the new code
> outside the "if" statement, so it applies to all devices?
Hmmm, I did this because so far, the reset framework only handles the
DT case. But that's right that it can be extended in the future, I'll
update it.
Thanks!
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20140512/42981ac8/attachment.sig>
WARNING: multiple messages have this Message-ID (diff)
From: Maxime Ripard <maxime.ripard@free-electrons.com>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: Emilio Lopez <emilio@elopez.com.ar>,
Mike Turquette <mturquette@linaro.org>,
kishon@ti.com, hdegoede@redhat.com,
Boris Brezillon <boris@free-electrons.com>,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, linux-usb@vger.kernel.org,
kevin.z.m.zh@gmail.com, sunny@allwinnertech.com,
shuge@allwinnertech.com, zhuzhenhua@allwinnertech.com,
linux-sunxi@googlegroups.com,
Boris BREZILLON <boris.brezillon@free-electrons.com>
Subject: Re: [PATCH v2 4/7] usb: ehci-platform: add optional reset controller retrieval
Date: Mon, 12 May 2014 16:30:52 +0200 [thread overview]
Message-ID: <20140512143052.GA17154@lukather> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1405101023510.1268-100000@netrider.rowland.org>
[-- Attachment #1: Type: text/plain, Size: 1425 bytes --]
Hi Alan,
On Sat, May 10, 2014 at 10:35:49AM -0400, Alan Stern wrote:
> > @@ -206,6 +208,19 @@ static int ehci_platform_probe(struct platform_device *dev)
> > break;
> > }
> > }
> > +
> > + priv->rst = devm_reset_control_get_optional(&dev->dev,
> > + NULL);
>
> I hate the style that matches arguments on a continuation line with the
> opening paren of the function call, for a couple of reasons. Instead I
> simply indent continuation lines by two or more tab stops. But some
> people seem to be incurably attached to it.
Ok, I'll change it.
> > + if (IS_ERR(priv->rst)) {
> > + err = PTR_ERR(priv->rst);
> > + if (err == -EPROBE_DEFER)
> > + goto err_put_clks;
> > + priv->rst = NULL;
> > + } else {
> > + err = reset_control_deassert(priv->rst);
> > + if (err)
> > + goto err_put_clks;
> > + }
> > }
> >
> > if (pdata->big_endian_desc)
>
> The new code was added inside an "if" statement, which will cause it to
> apply only to OF devices. Is there any reason not to put the new code
> outside the "if" statement, so it applies to all devices?
Hmmm, I did this because so far, the reset framework only handles the
DT case. But that's right that it can be extended in the future, I'll
update it.
Thanks!
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
next prev parent reply other threads:[~2014-05-12 14:30 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-10 12:56 [PATCH v2 0/7] Add Allwinner A31 USB support Maxime Ripard
2014-05-10 12:56 ` Maxime Ripard
2014-05-10 12:56 ` [PATCH v2 1/7] clk: sunxi: Implement A31 USB clock Maxime Ripard
2014-05-10 12:56 ` Maxime Ripard
2014-05-10 12:56 ` [PATCH v2 2/7] ARM: sun6i: Add the USB clocks to the DTSI Maxime Ripard
2014-05-10 12:56 ` Maxime Ripard
2014-05-10 12:56 ` [PATCH v2 3/7] phy: usb: sunxi: Introduce Allwinner A31 USB PHY support Maxime Ripard
2014-05-10 12:56 ` Maxime Ripard
2014-05-12 9:14 ` [linux-sunxi] " Chen-Yu Tsai
2014-05-12 9:14 ` Chen-Yu Tsai
2014-05-12 11:59 ` Hans de Goede
2014-05-12 11:59 ` Hans de Goede
2014-05-12 12:24 ` Kishon Vijay Abraham I
2014-05-12 12:24 ` Kishon Vijay Abraham I
2014-05-12 12:27 ` Hans de Goede
2014-05-12 12:27 ` Hans de Goede
2014-05-12 15:04 ` Maxime Ripard
2014-05-12 15:04 ` Maxime Ripard
2014-05-10 12:56 ` [PATCH v2 4/7] usb: ehci-platform: add optional reset controller retrieval Maxime Ripard
2014-05-10 12:56 ` Maxime Ripard
2014-05-10 14:35 ` Alan Stern
2014-05-10 14:35 ` Alan Stern
2014-05-12 14:30 ` Maxime Ripard [this message]
2014-05-12 14:30 ` Maxime Ripard
2014-05-10 12:56 ` [PATCH v2 5/7] usb: ohci-platform: Enable optional use of reset controller Maxime Ripard
2014-05-10 12:56 ` Maxime Ripard
2014-05-10 12:56 ` [PATCH v2 6/7] ARM: sun6i: dt: Add support for the USB controllers Maxime Ripard
2014-05-10 12:56 ` Maxime Ripard
2014-05-10 12:56 ` [PATCH v2 7/7] ARM: sunxi: dt: add APP4-EVB1 board support Maxime Ripard
2014-05-10 12:56 ` Maxime Ripard
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=20140512143052.GA17154@lukather \
--to=maxime.ripard@free-electrons.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.