devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/5] ARM: dts: fix cpu compatible values
@ 2015-09-25 17:35 Vladimir Zapolskiy
       [not found] ` <1443202506-13732-1-git-send-email-vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 11+ messages in thread
From: Vladimir Zapolskiy @ 2015-09-25 17:35 UTC (permalink / raw)
  To: Rob Herring, Pawel Moll, Mark Rutland, Russell King, Kukjin Kim,
	Krzysztof Kozlowski, Shawn Guo
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA

The changeset corrects severeal cpu compatible properties
to defined ones in Documentation/devicetree/bindings/arm/cpus.txt

Vladimir Zapolskiy (5):
  ARM: dts: i.MX31: fix cpu compatible value
  ARM: dts: i.MX35: fix cpu compatible value
  ARM: dts: S3C2416: fix cpu compatible value
  ARM: dts: TI-Nspire: fix cpu compatible value
  ARM: dts: WM8750: fix cpu compatible value

 arch/arm/boot/dts/imx31.dtsi   | 2 +-
 arch/arm/boot/dts/imx35.dtsi   | 2 +-
 arch/arm/boot/dts/nspire.dtsi  | 2 +-
 arch/arm/boot/dts/s3c2416.dtsi | 2 +-
 arch/arm/boot/dts/wm8750.dtsi  | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

-- 
2.1.4

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

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

* [PATCH 1/5] ARM: dts: i.MX31: fix cpu compatible value
       [not found] ` <1443202506-13732-1-git-send-email-vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
@ 2015-09-25 17:35   ` Vladimir Zapolskiy
  2015-09-25 17:35   ` [PATCH 2/5] ARM: dts: i.MX35: " Vladimir Zapolskiy
                     ` (5 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Vladimir Zapolskiy @ 2015-09-25 17:35 UTC (permalink / raw)
  To: Rob Herring, Pawel Moll, Mark Rutland, Russell King
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Shawn Guo, Sascha Hauer

The change corrects cpu compatible property to a defined one,
see Documentation/devicetree/bindings/arm/cpus.txt

Signed-off-by: Vladimir Zapolskiy <vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
Cc: Shawn Guo <shawnguo-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Cc: Sascha Hauer <kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
---
 arch/arm/boot/dts/imx31.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/imx31.dtsi b/arch/arm/boot/dts/imx31.dtsi
index c34f825..5fdb222 100644
--- a/arch/arm/boot/dts/imx31.dtsi
+++ b/arch/arm/boot/dts/imx31.dtsi
@@ -25,7 +25,7 @@
 		#size-cells = <0>;
 
 		cpu {
-			compatible = "arm,arm1136";
+			compatible = "arm,arm1136jf-s";
 			device_type = "cpu";
 		};
 	};
-- 
2.1.4

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

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

* [PATCH 2/5] ARM: dts: i.MX35: fix cpu compatible value
       [not found] ` <1443202506-13732-1-git-send-email-vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
  2015-09-25 17:35   ` [PATCH 1/5] ARM: dts: i.MX31: fix cpu compatible value Vladimir Zapolskiy
@ 2015-09-25 17:35   ` Vladimir Zapolskiy
  2015-09-25 17:35   ` [PATCH 3/5] ARM: dts: S3C2416: " Vladimir Zapolskiy
                     ` (4 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Vladimir Zapolskiy @ 2015-09-25 17:35 UTC (permalink / raw)
  To: Rob Herring, Pawel Moll, Mark Rutland, Russell King
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Shawn Guo, Sascha Hauer

The change corrects cpu compatible property to a defined one,
see Documentation/devicetree/bindings/arm/cpus.txt

Signed-off-by: Vladimir Zapolskiy <vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
Cc: Shawn Guo <shawnguo-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Cc: Sascha Hauer <kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
---
 arch/arm/boot/dts/imx35.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/imx35.dtsi b/arch/arm/boot/dts/imx35.dtsi
index e6540b5..ed3dc33 100644
--- a/arch/arm/boot/dts/imx35.dtsi
+++ b/arch/arm/boot/dts/imx35.dtsi
@@ -29,7 +29,7 @@
 		#size-cells = <0>;
 
 		cpu {
-			compatible = "arm,arm1136";
+			compatible = "arm,arm1136jf-s";
 			device_type = "cpu";
 		};
 	};
-- 
2.1.4

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

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

* [PATCH 3/5] ARM: dts: S3C2416: fix cpu compatible value
       [not found] ` <1443202506-13732-1-git-send-email-vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
  2015-09-25 17:35   ` [PATCH 1/5] ARM: dts: i.MX31: fix cpu compatible value Vladimir Zapolskiy
  2015-09-25 17:35   ` [PATCH 2/5] ARM: dts: i.MX35: " Vladimir Zapolskiy
@ 2015-09-25 17:35   ` Vladimir Zapolskiy
       [not found]     ` <1443202534-13816-3-git-send-email-vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
  2015-09-25 17:35   ` [PATCH 4/5] ARM: dts: TI-Nspire: " Vladimir Zapolskiy
                     ` (3 subsequent siblings)
  6 siblings, 1 reply; 11+ messages in thread
From: Vladimir Zapolskiy @ 2015-09-25 17:35 UTC (permalink / raw)
  To: Rob Herring, Pawel Moll, Mark Rutland, Russell King
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Kukjin Kim,
	Krzysztof Kozlowski

The change corrects cpu compatible property to a defined one,
see Documentation/devicetree/bindings/arm/cpus.txt

Signed-off-by: Vladimir Zapolskiy <vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
Cc: Kukjin Kim <kgene-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Cc: Krzysztof Kozlowski <k.kozlowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
---
 arch/arm/boot/dts/s3c2416.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/s3c2416.dtsi b/arch/arm/boot/dts/s3c2416.dtsi
index a5184ff..80f0075 100644
--- a/arch/arm/boot/dts/s3c2416.dtsi
+++ b/arch/arm/boot/dts/s3c2416.dtsi
@@ -25,7 +25,7 @@
 		#size-cells = <0>;
 
 		cpu {
-			compatible = "arm,arm926ejs";
+			compatible = "arm,arm926ej-s";
 		};
 	};
 
-- 
2.1.4

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

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

* [PATCH 4/5] ARM: dts: TI-Nspire: fix cpu compatible value
       [not found] ` <1443202506-13732-1-git-send-email-vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
                     ` (2 preceding siblings ...)
  2015-09-25 17:35   ` [PATCH 3/5] ARM: dts: S3C2416: " Vladimir Zapolskiy
@ 2015-09-25 17:35   ` Vladimir Zapolskiy
  2015-09-25 17:35   ` [PATCH 5/5] ARM: dts: WM8750: " Vladimir Zapolskiy
                     ` (2 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Vladimir Zapolskiy @ 2015-09-25 17:35 UTC (permalink / raw)
  To: Rob Herring, Pawel Moll, Mark Rutland, Russell King
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA

The change corrects cpu compatible property to a defined one,
see Documentation/devicetree/bindings/arm/cpus.txt

Signed-off-by: Vladimir Zapolskiy <vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
---
 arch/arm/boot/dts/nspire.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/nspire.dtsi b/arch/arm/boot/dts/nspire.dtsi
index 390c91a..ee5a0bb 100644
--- a/arch/arm/boot/dts/nspire.dtsi
+++ b/arch/arm/boot/dts/nspire.dtsi
@@ -16,7 +16,7 @@
 
 	cpus {
 		cpu@0 {
-			compatible = "arm,arm926ejs";
+			compatible = "arm,arm926ej-s";
 		};
 	};
 
-- 
2.1.4

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

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

* [PATCH 5/5] ARM: dts: WM8750: fix cpu compatible value
       [not found] ` <1443202506-13732-1-git-send-email-vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
                     ` (3 preceding siblings ...)
  2015-09-25 17:35   ` [PATCH 4/5] ARM: dts: TI-Nspire: " Vladimir Zapolskiy
@ 2015-09-25 17:35   ` Vladimir Zapolskiy
  2015-09-26  5:05   ` [PATCH 0/5] ARM: dts: fix cpu compatible values Shawn Guo
  2015-10-19 18:02   ` Vladimir Zapolskiy
  6 siblings, 0 replies; 11+ messages in thread
From: Vladimir Zapolskiy @ 2015-09-25 17:35 UTC (permalink / raw)
  To: Rob Herring, Pawel Moll, Mark Rutland, Russell King
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA

The change corrects cpu compatible property to a defined one,
see Documentation/devicetree/bindings/arm/cpus.txt

Signed-off-by: Vladimir Zapolskiy <vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
---
 arch/arm/boot/dts/wm8750.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/wm8750.dtsi b/arch/arm/boot/dts/wm8750.dtsi
index 557a9c2a..46d076d 100644
--- a/arch/arm/boot/dts/wm8750.dtsi
+++ b/arch/arm/boot/dts/wm8750.dtsi
@@ -17,7 +17,7 @@
 
 		cpu {
 			device_type = "cpu";
-			compatible = "arm,arm1176ej-s";
+			compatible = "arm,arm1176jzf";
 		};
 	};
 
-- 
2.1.4

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

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

* Re: [PATCH 0/5] ARM: dts: fix cpu compatible values
       [not found] ` <1443202506-13732-1-git-send-email-vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
                     ` (4 preceding siblings ...)
  2015-09-25 17:35   ` [PATCH 5/5] ARM: dts: WM8750: " Vladimir Zapolskiy
@ 2015-09-26  5:05   ` Shawn Guo
  2015-10-19 18:02   ` Vladimir Zapolskiy
  6 siblings, 0 replies; 11+ messages in thread
From: Shawn Guo @ 2015-09-26  5:05 UTC (permalink / raw)
  To: Vladimir Zapolskiy
  Cc: Rob Herring, Pawel Moll, Mark Rutland, Russell King, Kukjin Kim,
	Krzysztof Kozlowski, devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On Fri, Sep 25, 2015 at 08:35:06PM +0300, Vladimir Zapolskiy wrote:
> The changeset corrects severeal cpu compatible properties
> to defined ones in Documentation/devicetree/bindings/arm/cpus.txt
> 
> Vladimir Zapolskiy (5):
>   ARM: dts: i.MX31: fix cpu compatible value
>   ARM: dts: i.MX35: fix cpu compatible value

Applied these two, thanks.

Shawn
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 3/5] ARM: dts: S3C2416: fix cpu compatible value
       [not found]     ` <1443202534-13816-3-git-send-email-vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
@ 2015-09-28 11:44       ` Krzysztof Kozlowski
  0 siblings, 0 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2015-09-28 11:44 UTC (permalink / raw)
  To: Vladimir Zapolskiy, Rob Herring, Pawel Moll, Mark Rutland, Russell King
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA, Kukjin Kim,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

W dniu 26.09.2015 o 02:35, Vladimir Zapolskiy pisze:
> The change corrects cpu compatible property to a defined one,
> see Documentation/devicetree/bindings/arm/cpus.txt
> 
> Signed-off-by: Vladimir Zapolskiy <vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
> Cc: Kukjin Kim <kgene-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
> Cc: Krzysztof Kozlowski <k.kozlowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
> ---
>  arch/arm/boot/dts/s3c2416.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)


Reviewed-by: Krzysztof Kozlowski <k.kozlowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>

Best regards,
Krzysztof
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 0/5] ARM: dts: fix cpu compatible values
       [not found] ` <1443202506-13732-1-git-send-email-vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
                     ` (5 preceding siblings ...)
  2015-09-26  5:05   ` [PATCH 0/5] ARM: dts: fix cpu compatible values Shawn Guo
@ 2015-10-19 18:02   ` Vladimir Zapolskiy
       [not found]     ` <5625303C.6090902-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
  6 siblings, 1 reply; 11+ messages in thread
From: Vladimir Zapolskiy @ 2015-10-19 18:02 UTC (permalink / raw)
  To: Rob Herring, Pawel Moll, Mark Rutland, Russell King, Kukjin Kim,
	Krzysztof Kozlowski, Shawn Guo, Arnd Bergmann
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On 25.09.2015 20:35, Vladimir Zapolskiy wrote:
> The changeset corrects severeal cpu compatible properties
> to defined ones in Documentation/devicetree/bindings/arm/cpus.txt
> 
> Vladimir Zapolskiy (5):
>   ARM: dts: i.MX31: fix cpu compatible value
>   ARM: dts: i.MX35: fix cpu compatible value

Ping. Two patches above are applied by Shawn, could ARM maintainers
apply the rest? Thank you in advance.

>   ARM: dts: S3C2416: fix cpu compatible value
>   ARM: dts: TI-Nspire: fix cpu compatible value
>   ARM: dts: WM8750: fix cpu compatible value
> 
>  arch/arm/boot/dts/imx31.dtsi   | 2 +-
>  arch/arm/boot/dts/imx35.dtsi   | 2 +-
>  arch/arm/boot/dts/nspire.dtsi  | 2 +-
>  arch/arm/boot/dts/s3c2416.dtsi | 2 +-
>  arch/arm/boot/dts/wm8750.dtsi  | 2 +-
>  5 files changed, 5 insertions(+), 5 deletions(-)
> 

--
With best wishes,
Vladimir
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 0/5] ARM: dts: fix cpu compatible values
       [not found]     ` <5625303C.6090902-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
@ 2015-10-19 23:53       ` Krzysztof Kozlowski
  2015-10-23 20:00       ` Arnd Bergmann
  1 sibling, 0 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2015-10-19 23:53 UTC (permalink / raw)
  To: Vladimir Zapolskiy, Rob Herring, Pawel Moll, Mark Rutland,
	Russell King, Kukjin Kim, Shawn Guo, Arnd Bergmann
  Cc: devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On 20.10.2015 03:02, Vladimir Zapolskiy wrote:
> On 25.09.2015 20:35, Vladimir Zapolskiy wrote:
>> The changeset corrects severeal cpu compatible properties
>> to defined ones in Documentation/devicetree/bindings/arm/cpus.txt
>>
>> Vladimir Zapolskiy (5):
>>   ARM: dts: i.MX31: fix cpu compatible value
>>   ARM: dts: i.MX35: fix cpu compatible value
> 
> Ping. Two patches above are applied by Shawn, could ARM maintainers
> apply the rest? Thank you in advance.
> 
>>   ARM: dts: S3C2416: fix cpu compatible value

S3C2416 is already applied:
https://git.kernel.org/cgit/linux/kernel/git/kgene/linux-samsung.git/commit/?h=for-next&id=6716f6c6b8ae69e2abbea5e9c0c3c274be57d927

Best regards,
Krzysztof

>>   ARM: dts: TI-Nspire: fix cpu compatible value
>>   ARM: dts: WM8750: fix cpu compatible value
>>
>>  arch/arm/boot/dts/imx31.dtsi   | 2 +-
>>  arch/arm/boot/dts/imx35.dtsi   | 2 +-
>>  arch/arm/boot/dts/nspire.dtsi  | 2 +-
>>  arch/arm/boot/dts/s3c2416.dtsi | 2 +-
>>  arch/arm/boot/dts/wm8750.dtsi  | 2 +-
>>  5 files changed, 5 insertions(+), 5 deletions(-)
>>
> 
> --
> With best wishes,
> Vladimir
> 

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

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

* Re: [PATCH 0/5] ARM: dts: fix cpu compatible values
       [not found]     ` <5625303C.6090902-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
  2015-10-19 23:53       ` Krzysztof Kozlowski
@ 2015-10-23 20:00       ` Arnd Bergmann
  1 sibling, 0 replies; 11+ messages in thread
From: Arnd Bergmann @ 2015-10-23 20:00 UTC (permalink / raw)
  To: Vladimir Zapolskiy
  Cc: Rob Herring, Pawel Moll, Mark Rutland, Russell King, Kukjin Kim,
	Krzysztof Kozlowski, Shawn Guo,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On Monday 19 October 2015 21:02:36 Vladimir Zapolskiy wrote:
> On 25.09.2015 20:35, Vladimir Zapolskiy wrote:
> > The changeset corrects severeal cpu compatible properties
> > to defined ones in Documentation/devicetree/bindings/arm/cpus.txt
> > 
> > Vladimir Zapolskiy (5):
> >   ARM: dts: i.MX31: fix cpu compatible value
> >   ARM: dts: i.MX35: fix cpu compatible value
> 
> Ping. Two patches above are applied by Shawn, could ARM maintainers
> apply the rest? Thank you in advance.
> 

Applied the missing two as well now, thanks for the fixes!

	Arnd
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2015-10-23 20:00 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-25 17:35 [PATCH 0/5] ARM: dts: fix cpu compatible values Vladimir Zapolskiy
     [not found] ` <1443202506-13732-1-git-send-email-vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
2015-09-25 17:35   ` [PATCH 1/5] ARM: dts: i.MX31: fix cpu compatible value Vladimir Zapolskiy
2015-09-25 17:35   ` [PATCH 2/5] ARM: dts: i.MX35: " Vladimir Zapolskiy
2015-09-25 17:35   ` [PATCH 3/5] ARM: dts: S3C2416: " Vladimir Zapolskiy
     [not found]     ` <1443202534-13816-3-git-send-email-vz-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
2015-09-28 11:44       ` Krzysztof Kozlowski
2015-09-25 17:35   ` [PATCH 4/5] ARM: dts: TI-Nspire: " Vladimir Zapolskiy
2015-09-25 17:35   ` [PATCH 5/5] ARM: dts: WM8750: " Vladimir Zapolskiy
2015-09-26  5:05   ` [PATCH 0/5] ARM: dts: fix cpu compatible values Shawn Guo
2015-10-19 18:02   ` Vladimir Zapolskiy
     [not found]     ` <5625303C.6090902-ChpfBGZJDbMAvxtiuMwx3w@public.gmane.org>
2015-10-19 23:53       ` Krzysztof Kozlowski
2015-10-23 20:00       ` Arnd Bergmann

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