linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1] ARM: dts: omap4-panda: Update the twl6040 gpio to macro definition
@ 2013-05-31 15:45 Dan Murphy
  2013-05-31 16:12 ` Florian Vaussard
  0 siblings, 1 reply; 3+ messages in thread
From: Dan Murphy @ 2013-05-31 15:45 UTC (permalink / raw)
  To: linux-arm-kernel

Update the dt property ti,audpwron-gpio to use the
gpio macro definition for GPIO_ACTIVE_HIGH.

Signed-off-by: Dan Murphy <dmurphy@ti.com>
---
 arch/arm/boot/dts/omap4-panda-common.dtsi |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/boot/dts/omap4-panda-common.dtsi b/arch/arm/boot/dts/omap4-panda-common.dtsi
index 800fa4e..00cbaa5 100644
--- a/arch/arm/boot/dts/omap4-panda-common.dtsi
+++ b/arch/arm/boot/dts/omap4-panda-common.dtsi
@@ -190,7 +190,7 @@
 		/* IRQ# = 119 */
 		interrupts = <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>; /* IRQ_SYS_2N cascaded to gic */
 		interrupt-parent = <&gic>;
-		ti,audpwron-gpio = <&gpio4 31 0>;  /* gpio line 127 */
+		ti,audpwron-gpio = <&gpio4 31 GPIO_ACTIVE_HIGH>;  /* gpio line 127 */
 
 		vio-supply = <&v1v8>;
 		v2v1-supply = <&v2v1>;
-- 
1.7.5.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH v1] ARM: dts: omap4-panda: Update the twl6040 gpio to macro definition
  2013-05-31 15:45 [PATCH v1] ARM: dts: omap4-panda: Update the twl6040 gpio to macro definition Dan Murphy
@ 2013-05-31 16:12 ` Florian Vaussard
  2013-06-03 14:20   ` Benoit Cousson
  0 siblings, 1 reply; 3+ messages in thread
From: Florian Vaussard @ 2013-05-31 16:12 UTC (permalink / raw)
  To: linux-arm-kernel

Hello Dan,

On 05/31/2013 05:45 PM, Dan Murphy wrote:
> Update the dt property ti,audpwron-gpio to use the
> gpio macro definition for GPIO_ACTIVE_HIGH.
>
> Signed-off-by: Dan Murphy <dmurphy@ti.com>
> ---
>   arch/arm/boot/dts/omap4-panda-common.dtsi |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/boot/dts/omap4-panda-common.dtsi b/arch/arm/boot/dts/omap4-panda-common.dtsi
> index 800fa4e..00cbaa5 100644
> --- a/arch/arm/boot/dts/omap4-panda-common.dtsi
> +++ b/arch/arm/boot/dts/omap4-panda-common.dtsi
> @@ -190,7 +190,7 @@
>   		/* IRQ# = 119 */
>   		interrupts = <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>; /* IRQ_SYS_2N cascaded to gic */
>   		interrupt-parent = <&gic>;
> -		ti,audpwron-gpio = <&gpio4 31 0>;  /* gpio line 127 */
> +		ti,audpwron-gpio = <&gpio4 31 GPIO_ACTIVE_HIGH>;  /* gpio line 127 */
>
>   		vio-supply = <&v1v8>;
>   		v2v1-supply = <&v2v1>;
>

I missed it during the conversion, thank you.

Reviewed-by: Florian Vaussard <florian.vaussard@epfl.ch>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH v1] ARM: dts: omap4-panda: Update the twl6040 gpio to macro definition
  2013-05-31 16:12 ` Florian Vaussard
@ 2013-06-03 14:20   ` Benoit Cousson
  0 siblings, 0 replies; 3+ messages in thread
From: Benoit Cousson @ 2013-06-03 14:20 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Dan,

On 05/31/2013 06:12 PM, Florian Vaussard wrote:
> Hello Dan,
> 
> On 05/31/2013 05:45 PM, Dan Murphy wrote:
>> Update the dt property ti,audpwron-gpio to use the
>> gpio macro definition for GPIO_ACTIVE_HIGH.
>>
>> Signed-off-by: Dan Murphy <dmurphy@ti.com>
>> ---
>>   arch/arm/boot/dts/omap4-panda-common.dtsi |    2 +-
>>   1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/arch/arm/boot/dts/omap4-panda-common.dtsi
>> b/arch/arm/boot/dts/omap4-panda-common.dtsi
>> index 800fa4e..00cbaa5 100644
>> --- a/arch/arm/boot/dts/omap4-panda-common.dtsi
>> +++ b/arch/arm/boot/dts/omap4-panda-common.dtsi
>> @@ -190,7 +190,7 @@
>>           /* IRQ# = 119 */
>>           interrupts = <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>; /*
>> IRQ_SYS_2N cascaded to gic */
>>           interrupt-parent = <&gic>;
>> -        ti,audpwron-gpio = <&gpio4 31 0>;  /* gpio line 127 */
>> +        ti,audpwron-gpio = <&gpio4 31 GPIO_ACTIVE_HIGH>;  /* gpio
>> line 127 */
>>
>>           vio-supply = <&v1v8>;
>>           v2v1-supply = <&v2v1>;
>>
> 
> I missed it during the conversion, thank you.
> 
> Reviewed-by: Florian Vaussard <florian.vaussard@epfl.ch>

I've just applied it with Florian's Reviewed-by.

Thanks,
Benoit

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-06-03 14:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-31 15:45 [PATCH v1] ARM: dts: omap4-panda: Update the twl6040 gpio to macro definition Dan Murphy
2013-05-31 16:12 ` Florian Vaussard
2013-06-03 14:20   ` Benoit Cousson

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).