All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: imx25: Make lcdc compatible to imx27/imx21 fb
@ 2013-07-12  7:34 Matthias Weisser
  2013-07-12  8:45 ` Shawn Guo
  0 siblings, 1 reply; 4+ messages in thread
From: Matthias Weisser @ 2013-07-12  7:34 UTC (permalink / raw)
  To: linux-arm-kernel

ARM: dts: imx25: Make lcdc compatible to imx27/imx21 fb

Signed-off-by: Matthias Weisser <weisserm@arcor.de>
---
 arch/arm/boot/dts/imx25.dtsi |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/imx25.dtsi b/arch/arm/boot/dts/imx25.dtsi
index d2550e0..83532b6 100644
--- a/arch/arm/boot/dts/imx25.dtsi
+++ b/arch/arm/boot/dts/imx25.dtsi
@@ -377,7 +377,8 @@
 				status = "disabled";
 			};
 
-			lcdc at 53fbc000 {
+			lcdc: lcdc at 53fbc000 {
+				compatible = "fsl,imx27-fb", "fsl,imx21-fb";
 				reg = <0x53fbc000 0x4000>;
 				interrupts = <39>;
 				clocks = <&clks 103>, <&clks 66>, <&clks 49>;
-- 
1.7.9.5

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

* [PATCH] ARM: dts: imx25: Make lcdc compatible to imx27/imx21 fb
  2013-07-12  7:34 [PATCH] ARM: dts: imx25: Make lcdc compatible to imx27/imx21 fb Matthias Weisser
@ 2013-07-12  8:45 ` Shawn Guo
  2013-07-12  9:43   ` Matthias Weißer
  0 siblings, 1 reply; 4+ messages in thread
From: Shawn Guo @ 2013-07-12  8:45 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Jul 12, 2013 at 09:34:54AM +0200, Matthias Weisser wrote:
> ARM: dts: imx25: Make lcdc compatible to imx27/imx21 fb
> 
> Signed-off-by: Matthias Weisser <weisserm@arcor.de>
> ---
>  arch/arm/boot/dts/imx25.dtsi |    3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/arch/arm/boot/dts/imx25.dtsi b/arch/arm/boot/dts/imx25.dtsi
> index d2550e0..83532b6 100644
> --- a/arch/arm/boot/dts/imx25.dtsi
> +++ b/arch/arm/boot/dts/imx25.dtsi
> @@ -377,7 +377,8 @@
>  				status = "disabled";
>  			};
>  
> -			lcdc at 53fbc000 {
> +			lcdc: lcdc at 53fbc000 {
> +				compatible = "fsl,imx27-fb", "fsl,imx21-fb";

It makes more sense to have it be:

	compatible = "fsl,imx25-fb", "fsl,imx21-fb";

Shawn

>  				reg = <0x53fbc000 0x4000>;
>  				interrupts = <39>;
>  				clocks = <&clks 103>, <&clks 66>, <&clks 49>;
> -- 
> 1.7.9.5
> 

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

* [PATCH] ARM: dts: imx25: Make lcdc compatible to imx27/imx21 fb
  2013-07-12  8:45 ` Shawn Guo
@ 2013-07-12  9:43   ` Matthias Weißer
  2013-07-15  1:43     ` Shawn Guo
  0 siblings, 1 reply; 4+ messages in thread
From: Matthias Weißer @ 2013-07-12  9:43 UTC (permalink / raw)
  To: linux-arm-kernel

Am 12.07.2013 10:45, schrieb Shawn Guo:
> On Fri, Jul 12, 2013 at 09:34:54AM +0200, Matthias Weisser wrote:
>> ARM: dts: imx25: Make lcdc compatible to imx27/imx21 fb
>>
>> Signed-off-by: Matthias Weisser <weisserm@arcor.de>
>> ---
>>  arch/arm/boot/dts/imx25.dtsi |    3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/arch/arm/boot/dts/imx25.dtsi b/arch/arm/boot/dts/imx25.dtsi
>> index d2550e0..83532b6 100644
>> --- a/arch/arm/boot/dts/imx25.dtsi
>> +++ b/arch/arm/boot/dts/imx25.dtsi
>> @@ -377,7 +377,8 @@
>>  				status = "disabled";
>>  			};
>>
>> -			lcdc at 53fbc000 {
>> +			lcdc: lcdc at 53fbc000 {
>> +				compatible = "fsl,imx27-fb", "fsl,imx21-fb";
>
> It makes more sense to have it be:
>
> 	compatible = "fsl,imx25-fb", "fsl,imx21-fb";

Should I send a v2?

Matthias

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

* [PATCH] ARM: dts: imx25: Make lcdc compatible to imx27/imx21 fb
  2013-07-12  9:43   ` Matthias Weißer
@ 2013-07-15  1:43     ` Shawn Guo
  0 siblings, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2013-07-15  1:43 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Jul 12, 2013 at 11:43:20AM +0200, Matthias Wei?er wrote:
> Should I send a v2?

I just fixed it up and applied.

Shawn

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

end of thread, other threads:[~2013-07-15  1:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-12  7:34 [PATCH] ARM: dts: imx25: Make lcdc compatible to imx27/imx21 fb Matthias Weisser
2013-07-12  8:45 ` Shawn Guo
2013-07-12  9:43   ` Matthias Weißer
2013-07-15  1:43     ` Shawn Guo

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.