Re: [PATCH v2 05/13] extcon: extcon-class: improve extcon client API

2014-04-23 Thread Robert Baldyga
On 04/22/2014 05:03 PM, Aaro Koskinen wrote:
> Hi,
> 
> On Tue, Apr 22, 2014 at 08:21:35AM +0200, Robert Baldyga wrote:
>> On 04/19/2014 12:52 PM, Aaro Koskinen wrote:
>>> On Mon, Apr 14, 2014 at 01:46:16PM +0200, Robert Baldyga wrote:
dev_info(&pdev->dev,
 -   "OMAP USB OTG controller rev %d.%d (%s, id=%d, vbus=%d)\n",
 -   (rev >> 4) & 0xf, rev & 0xf, config->extcon, otg_dev->id,
 +   "OMAP USB OTG controller rev %d.%d (id=%d, vbus=%d)\n",
 +   (rev >> 4) & 0xf, rev & 0xf, otg_dev->id,
 otg_dev->vbus);
>>>
>>> This change is unrelated to the patch and not needed.
>>>
>>
>> It's related because we no longer use config->extcon since we have
>> cable-oriented API. We can keep displaying it, but this value is
>> actually meaningless.
> 
> It's not completely meaningless, as the cable is searched using that name.
> 

Yes, I see, you're right. I have forgot that this driver doesn't use
devicetree. I will restore displaying extcon name.

Thanks!
Robert Baldyga
Samsung R&D Institute Poland

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2 05/13] extcon: extcon-class: improve extcon client API

2014-04-22 Thread Aaro Koskinen
Hi,

On Tue, Apr 22, 2014 at 08:21:35AM +0200, Robert Baldyga wrote:
> On 04/19/2014 12:52 PM, Aaro Koskinen wrote:
> > On Mon, Apr 14, 2014 at 01:46:16PM +0200, Robert Baldyga wrote:
> >>dev_info(&pdev->dev,
> >> -   "OMAP USB OTG controller rev %d.%d (%s, id=%d, vbus=%d)\n",
> >> -   (rev >> 4) & 0xf, rev & 0xf, config->extcon, otg_dev->id,
> >> +   "OMAP USB OTG controller rev %d.%d (id=%d, vbus=%d)\n",
> >> +   (rev >> 4) & 0xf, rev & 0xf, otg_dev->id,
> >> otg_dev->vbus);
> > 
> > This change is unrelated to the patch and not needed.
> >
> 
> It's related because we no longer use config->extcon since we have
> cable-oriented API. We can keep displaying it, but this value is
> actually meaningless.

It's not completely meaningless, as the cable is searched using that name.

A.
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2 05/13] extcon: extcon-class: improve extcon client API

2014-04-22 Thread Felipe Balbi
On Tue, Apr 22, 2014 at 08:21:35AM +0200, Robert Baldyga wrote:
> On 04/19/2014 12:52 PM, Aaro Koskinen wrote:
> > Hi,
> > 
> > On Mon, Apr 14, 2014 at 01:46:16PM +0200, Robert Baldyga wrote:
> >>dev_info(&pdev->dev,
> >> -   "OMAP USB OTG controller rev %d.%d (%s, id=%d, vbus=%d)\n",
> >> -   (rev >> 4) & 0xf, rev & 0xf, config->extcon, otg_dev->id,
> >> +   "OMAP USB OTG controller rev %d.%d (id=%d, vbus=%d)\n",
> >> +   (rev >> 4) & 0xf, rev & 0xf, otg_dev->id,
> >> otg_dev->vbus);
> > 
> > This change is unrelated to the patch and not needed.
> >
> 
> It's related because we no longer use config->extcon since we have
> cable-oriented API. We can keep displaying it, but this value is
> actually meaningless.

can you just add some note in the commit log ? "while at that, also
remove config->extconf from debugging print because it won't contain
valid data anymore" or something like that.

Other than that:

Acked-by: Felipe Balbi 

-- 
balbi


signature.asc
Description: Digital signature


Re: [PATCH v2 05/13] extcon: extcon-class: improve extcon client API

2014-04-21 Thread Robert Baldyga
On 04/19/2014 12:52 PM, Aaro Koskinen wrote:
> Hi,
> 
> On Mon, Apr 14, 2014 at 01:46:16PM +0200, Robert Baldyga wrote:
>>  dev_info(&pdev->dev,
>> - "OMAP USB OTG controller rev %d.%d (%s, id=%d, vbus=%d)\n",
>> - (rev >> 4) & 0xf, rev & 0xf, config->extcon, otg_dev->id,
>> + "OMAP USB OTG controller rev %d.%d (id=%d, vbus=%d)\n",
>> + (rev >> 4) & 0xf, rev & 0xf, otg_dev->id,
>>   otg_dev->vbus);
> 
> This change is unrelated to the patch and not needed.
>

It's related because we no longer use config->extcon since we have
cable-oriented API. We can keep displaying it, but this value is
actually meaningless.

Best regards
Robert Baldyga
Samsung R&D Institute Poland
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2 05/13] extcon: extcon-class: improve extcon client API

2014-04-19 Thread Aaro Koskinen
Hi,

On Mon, Apr 14, 2014 at 01:46:16PM +0200, Robert Baldyga wrote:
>   dev_info(&pdev->dev,
> -  "OMAP USB OTG controller rev %d.%d (%s, id=%d, vbus=%d)\n",
> -  (rev >> 4) & 0xf, rev & 0xf, config->extcon, otg_dev->id,
> +  "OMAP USB OTG controller rev %d.%d (id=%d, vbus=%d)\n",
> +  (rev >> 4) & 0xf, rev & 0xf, otg_dev->id,
>otg_dev->vbus);

This change is unrelated to the patch and not needed.

A.
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html