Re: [PATCH 0/4] extcon: gpio: add DT support

2014-11-05 Thread Felipe Balbi
On Wed, Nov 05, 2014 at 08:55:17PM +0530, George Cherian wrote:
> 
> On 11/04/2014 08:11 PM, Felipe Balbi wrote:
> >On Tue, Nov 04, 2014 at 11:42:04AM +0530, George Cherian wrote:
> >>Hi Felipe et al.
> >>
> >>Another series was posted by removing the platform support.
> >>https://lkml.org/lkml/2014/10/14/244
> >>
> >>I guess I forgot to copy linux-omap.
> >you do too many things in patch one. I wonder why you decided to combine
> >three patches in one for that series.
> Since there are no platform users for this driver. I am basically removing
> the whole platform data part
> from the driver. That is the reason i squashed 1 to 3 of the previous
> series.
> I will resend the new series copying linux-omap now.

It doesn't make sense, however, to switch over to gpio descs, remove
platform_data and add DT support all in one go.

-- 
balbi


signature.asc
Description: Digital signature


Re: [PATCH 0/4] extcon: gpio: add DT support

2014-11-05 Thread George Cherian


On 11/04/2014 08:11 PM, Felipe Balbi wrote:

On Tue, Nov 04, 2014 at 11:42:04AM +0530, George Cherian wrote:

Hi Felipe et al.

Another series was posted by removing the platform support.
https://lkml.org/lkml/2014/10/14/244

I guess I forgot to copy linux-omap.

you do too many things in patch one. I wonder why you decided to combine
three patches in one for that series.
Since there are no platform users for this driver. I am basically 
removing the whole platform data part
from the driver. That is the reason i squashed 1 to 3 of the previous 
series.

I will resend the new series copying linux-omap now.

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


Re: [PATCH 0/4] extcon: gpio: add DT support

2014-11-05 Thread George Cherian


On 11/04/2014 08:11 PM, Felipe Balbi wrote:

On Tue, Nov 04, 2014 at 11:42:04AM +0530, George Cherian wrote:

Hi Felipe et al.

Another series was posted by removing the platform support.
https://lkml.org/lkml/2014/10/14/244

I guess I forgot to copy linux-omap.

you do too many things in patch one. I wonder why you decided to combine
three patches in one for that series.
Since there are no platform users for this driver. I am basically 
removing the whole platform data part
from the driver. That is the reason i squashed 1 to 3 of the previous 
series.

I will resend the new series copying linux-omap now.

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 0/4] extcon: gpio: add DT support

2014-11-05 Thread Felipe Balbi
On Wed, Nov 05, 2014 at 08:55:17PM +0530, George Cherian wrote:
 
 On 11/04/2014 08:11 PM, Felipe Balbi wrote:
 On Tue, Nov 04, 2014 at 11:42:04AM +0530, George Cherian wrote:
 Hi Felipe et al.
 
 Another series was posted by removing the platform support.
 https://lkml.org/lkml/2014/10/14/244
 
 I guess I forgot to copy linux-omap.
 you do too many things in patch one. I wonder why you decided to combine
 three patches in one for that series.
 Since there are no platform users for this driver. I am basically removing
 the whole platform data part
 from the driver. That is the reason i squashed 1 to 3 of the previous
 series.
 I will resend the new series copying linux-omap now.

It doesn't make sense, however, to switch over to gpio descs, remove
platform_data and add DT support all in one go.

-- 
balbi


signature.asc
Description: Digital signature


Re: [PATCH 0/4] extcon: gpio: add DT support

2014-11-04 Thread Felipe Balbi
On Tue, Nov 04, 2014 at 11:42:04AM +0530, George Cherian wrote:
> Hi Felipe et al.
> 
> Another series was posted by removing the platform support.
> https://lkml.org/lkml/2014/10/14/244
> 
> I guess I forgot to copy linux-omap.

you do too many things in patch one. I wonder why you decided to combine
three patches in one for that series.

-- 
balbi


signature.asc
Description: Digital signature


Re: [PATCH 0/4] extcon: gpio: add DT support

2014-11-04 Thread Felipe Balbi
On Tue, Nov 04, 2014 at 11:42:04AM +0530, George Cherian wrote:
 Hi Felipe et al.
 
 Another series was posted by removing the platform support.
 https://lkml.org/lkml/2014/10/14/244
 
 I guess I forgot to copy linux-omap.

you do too many things in patch one. I wonder why you decided to combine
three patches in one for that series.

-- 
balbi


signature.asc
Description: Digital signature


Re: [PATCH 0/4] extcon: gpio: add DT support

2014-11-03 Thread George Cherian

Hi Felipe et al.

Another series was posted by removing the platform support.
https://lkml.org/lkml/2014/10/14/244

I guess I forgot to copy linux-omap.



On 11/03/2014 10:02 PM, Felipe Balbi wrote:

Hi,

this series has been tested with v3.18-rc2 with a
yet-to-be-released board (called X15). That board
is DT-only and we use extcon-gpio to decide which
USB mode should be used (host or peripheral).

George Cherian (4):
   extcon: gpio: Convert the driver to use gpio desc API's
   extcon: gpio: Add dt support for the driver.
   extcon: gpio: Always use gpio_get_value_cansleep
   extcon: gpio: Add support for using cable names

  .../devicetree/bindings/extcon/extcon-gpio.txt | 23 ++
  drivers/extcon/extcon-gpio.c   | 93 ++
  2 files changed, 84 insertions(+), 32 deletions(-)
  create mode 100644 Documentation/devicetree/bindings/extcon/extcon-gpio.txt



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


Re: [PATCH 0/4] extcon: gpio: add DT support

2014-11-03 Thread George Cherian

Hi Felipe et al.

Another series was posted by removing the platform support.
https://lkml.org/lkml/2014/10/14/244

I guess I forgot to copy linux-omap.



On 11/03/2014 10:02 PM, Felipe Balbi wrote:

Hi,

this series has been tested with v3.18-rc2 with a
yet-to-be-released board (called X15). That board
is DT-only and we use extcon-gpio to decide which
USB mode should be used (host or peripheral).

George Cherian (4):
   extcon: gpio: Convert the driver to use gpio desc API's
   extcon: gpio: Add dt support for the driver.
   extcon: gpio: Always use gpio_get_value_cansleep
   extcon: gpio: Add support for using cable names

  .../devicetree/bindings/extcon/extcon-gpio.txt | 23 ++
  drivers/extcon/extcon-gpio.c   | 93 ++
  2 files changed, 84 insertions(+), 32 deletions(-)
  create mode 100644 Documentation/devicetree/bindings/extcon/extcon-gpio.txt



--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/