All of lore.kernel.org
 help / color / mirror / Atom feed
From: Roger Quadros <rogerq@ti.com>
To: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Cc: devicetree@vger.kernel.org, george.cherian@ti.com,
	tony@atomide.com, bigeasy@linutronix.de,
	linux-usb@vger.kernel.org, balbi@ti.com, kishon@ti.com,
	bcousson@baylibre.com, linux-omap@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v4 4/8] usb: phy: omap-usb3: Don't use omap_get_control_dev()
Date: Mon, 19 Aug 2013 17:25:50 +0300	[thread overview]
Message-ID: <52122AEE.5050401@ti.com> (raw)
In-Reply-To: <52122A69.6080000@cogentembedded.com>

Hi Sergei,

On 08/19/2013 05:23 PM, Sergei Shtylyov wrote:
> Hello.
> 
> On 08/19/2013 02:37 PM, Roger Quadros wrote:
> 
>> omap_get_control_dev() is being deprecated as it doesn't support
>> multiple instances. As control device is present only from OMAP4
>> onwards which supports DT only, we use phandles to get the
>> reference to the control device.
> 
>> As we don't support non-DT boot, we just bail out on probe
>> if device node is not present.
> 
>> Signed-off-by: Roger Quadros <rogerq@ti.com>
>> ---
>>   drivers/usb/phy/phy-omap-usb3.c |   22 ++++++++++++++++++----
>>   1 files changed, 18 insertions(+), 4 deletions(-)
> 
>> diff --git a/drivers/usb/phy/phy-omap-usb3.c b/drivers/usb/phy/phy-omap-usb3.c
>> index 4a7f27c..981313e 100644
>> --- a/drivers/usb/phy/phy-omap-usb3.c
>> +++ b/drivers/usb/phy/phy-omap-usb3.c
> [...]
>> @@ -198,6 +199,12 @@ static int omap_usb3_probe(struct platform_device *pdev)
>>   {
>>       struct omap_usb            *phy;
>>       struct resource            *res;
>> +    struct device_node *node = pdev->dev.of_node;
>> +    struct device_node *control_node;
>> +    struct platform_device *control_pdev;
> 
>    Could you align the variable names with the above 2 variables?
> Either that, or remove the alignment of those two.

OK, I'll remove the alignment of the 1st two lines.

cheers,
-roger

WARNING: multiple messages have this Message-ID (diff)
From: rogerq@ti.com (Roger Quadros)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 4/8] usb: phy: omap-usb3: Don't use omap_get_control_dev()
Date: Mon, 19 Aug 2013 17:25:50 +0300	[thread overview]
Message-ID: <52122AEE.5050401@ti.com> (raw)
In-Reply-To: <52122A69.6080000@cogentembedded.com>

Hi Sergei,

On 08/19/2013 05:23 PM, Sergei Shtylyov wrote:
> Hello.
> 
> On 08/19/2013 02:37 PM, Roger Quadros wrote:
> 
>> omap_get_control_dev() is being deprecated as it doesn't support
>> multiple instances. As control device is present only from OMAP4
>> onwards which supports DT only, we use phandles to get the
>> reference to the control device.
> 
>> As we don't support non-DT boot, we just bail out on probe
>> if device node is not present.
> 
>> Signed-off-by: Roger Quadros <rogerq@ti.com>
>> ---
>>   drivers/usb/phy/phy-omap-usb3.c |   22 ++++++++++++++++++----
>>   1 files changed, 18 insertions(+), 4 deletions(-)
> 
>> diff --git a/drivers/usb/phy/phy-omap-usb3.c b/drivers/usb/phy/phy-omap-usb3.c
>> index 4a7f27c..981313e 100644
>> --- a/drivers/usb/phy/phy-omap-usb3.c
>> +++ b/drivers/usb/phy/phy-omap-usb3.c
> [...]
>> @@ -198,6 +199,12 @@ static int omap_usb3_probe(struct platform_device *pdev)
>>   {
>>       struct omap_usb            *phy;
>>       struct resource            *res;
>> +    struct device_node *node = pdev->dev.of_node;
>> +    struct device_node *control_node;
>> +    struct platform_device *control_pdev;
> 
>    Could you align the variable names with the above 2 variables?
> Either that, or remove the alignment of those two.

OK, I'll remove the alignment of the 1st two lines.

cheers,
-roger

  reply	other threads:[~2013-08-19 14:25 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-19 10:37 [PATCH v4 0/8] phy: omap-usb: Support multiple instances and new types Roger Quadros
2013-08-19 10:37 ` Roger Quadros
     [not found] ` <1376908667-14974-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2013-08-19 10:37   ` [PATCH v4 1/8] usb: phy: omap-control: Get rid of platform data Roger Quadros
2013-08-19 10:37     ` Roger Quadros
2013-08-19 10:37   ` [PATCH v4 2/8] usb: phy: omap: Add new device types and remove omap_control_usb3_phy_power() Roger Quadros
2013-08-19 10:37     ` Roger Quadros
2013-08-19 10:37   ` [PATCH v4 3/8] usb: phy: omap-usb2: Don't use omap_get_control_dev() Roger Quadros
2013-08-19 10:37     ` Roger Quadros
2013-08-19 10:37   ` [PATCH v4 4/8] usb: phy: omap-usb3: " Roger Quadros
2013-08-19 10:37     ` Roger Quadros
2013-08-19 14:23     ` Sergei Shtylyov
2013-08-19 14:23       ` Sergei Shtylyov
2013-08-19 14:25       ` Roger Quadros [this message]
2013-08-19 14:25         ` Roger Quadros
2013-08-19 10:37   ` [PATCH v4 5/8] usb: musb: omap2430: " Roger Quadros
2013-08-19 10:37     ` Roger Quadros
2013-08-19 10:37 ` [PATCH v4 6/8] usb: phy: omap: get rid of omap_get_control_dev() Roger Quadros
2013-08-19 10:37   ` Roger Quadros
2013-08-19 10:37 ` [PATCH v4 7/8] ARM: dts: omap4: update omap-control-usb nodes Roger Quadros
2013-08-19 10:37   ` Roger Quadros
2013-08-19 10:37 ` [PATCH v4 8/8] ARM: dts: omap5: update omap-control-usb node Roger Quadros
2013-08-19 10:37   ` 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=52122AEE.5050401@ti.com \
    --to=rogerq@ti.com \
    --cc=balbi@ti.com \
    --cc=bcousson@baylibre.com \
    --cc=bigeasy@linutronix.de \
    --cc=devicetree@vger.kernel.org \
    --cc=george.cherian@ti.com \
    --cc=kishon@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=sergei.shtylyov@cogentembedded.com \
    --cc=tony@atomide.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.