linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [RESEND PATCH 1/5] ARM: dts: prima: Align L2 cache-controller nodename with dtschema
@ 2020-08-19 17:58 Krzysztof Kozlowski
  2020-08-19 17:58 ` [RESEND PATCH 2/5] ARM: dts: qcom: " Krzysztof Kozlowski
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-19 17:58 UTC (permalink / raw)
  To: Barry Song, Rob Herring, Andy Gross, Bjorn Andersson,
	Viresh Kumar, Shiraz Hashim, Marc Gonzalez, Mans Rullgard,
	Jun Nie, Shawn Guo, linux-arm-kernel, devicetree, linux-kernel,
	linux-arm-msm
  Cc: Krzysztof Kozlowski

Fix dtschema validator warnings like:
    l2-cache-controller@80040000: $nodename:0:
        'l2-cache-controller@80040000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
---
 arch/arm/boot/dts/prima2.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/prima2.dtsi b/arch/arm/boot/dts/prima2.dtsi
index 9c7b46b90c3c..7d3d93c22ed9 100644
--- a/arch/arm/boot/dts/prima2.dtsi
+++ b/arch/arm/boot/dts/prima2.dtsi
@@ -50,7 +50,7 @@
 		#size-cells = <1>;
 		ranges = <0x40000000 0x40000000 0x80000000>;
 
-		l2-cache-controller@80040000 {
+		cache-controller@80040000 {
 			compatible = "arm,pl310-cache";
 			reg = <0x80040000 0x1000>;
 			interrupts = <59>;
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [RESEND PATCH 2/5] ARM: dts: qcom: Align L2 cache-controller nodename with dtschema
  2020-08-19 17:58 [RESEND PATCH 1/5] ARM: dts: prima: Align L2 cache-controller nodename with dtschema Krzysztof Kozlowski
@ 2020-08-19 17:58 ` Krzysztof Kozlowski
  2020-08-19 17:58 ` [RESEND PATCH 3/5] ARM: dts: spear: " Krzysztof Kozlowski
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 13+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-19 17:58 UTC (permalink / raw)
  To: Barry Song, Rob Herring, Andy Gross, Bjorn Andersson,
	Viresh Kumar, Shiraz Hashim, Marc Gonzalez, Mans Rullgard,
	Jun Nie, Shawn Guo, linux-arm-kernel, devicetree, linux-kernel,
	linux-arm-msm
  Cc: Krzysztof Kozlowski

Fix dtschema validator warnings like:
    l2-cache@2040000: $nodename:0:
        'l2-cache@2040000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
---
 arch/arm/boot/dts/qcom-mdm9615.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/qcom-mdm9615.dtsi b/arch/arm/boot/dts/qcom-mdm9615.dtsi
index 347b4f7d7889..dda2ceec6591 100644
--- a/arch/arm/boot/dts/qcom-mdm9615.dtsi
+++ b/arch/arm/boot/dts/qcom-mdm9615.dtsi
@@ -98,7 +98,7 @@
 		ranges;
 		compatible = "simple-bus";
 
-		L2: l2-cache@2040000 {
+		L2: cache-controller@2040000 {
 			compatible = "arm,pl310-cache";
 			reg = <0x02040000 0x1000>;
 			arm,data-latency = <2 2 0>;
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [RESEND PATCH 3/5] ARM: dts: spear: Align L2 cache-controller nodename with dtschema
  2020-08-19 17:58 [RESEND PATCH 1/5] ARM: dts: prima: Align L2 cache-controller nodename with dtschema Krzysztof Kozlowski
  2020-08-19 17:58 ` [RESEND PATCH 2/5] ARM: dts: qcom: " Krzysztof Kozlowski
@ 2020-08-19 17:58 ` Krzysztof Kozlowski
  2020-08-20  4:50   ` Viresh Kumar
  2020-08-19 17:58 ` [RESEND PATCH 4/5] ARM: dts: tango: " Krzysztof Kozlowski
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 13+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-19 17:58 UTC (permalink / raw)
  To: Barry Song, Rob Herring, Andy Gross, Bjorn Andersson,
	Viresh Kumar, Shiraz Hashim, Marc Gonzalez, Mans Rullgard,
	Jun Nie, Shawn Guo, linux-arm-kernel, devicetree, linux-kernel,
	linux-arm-msm
  Cc: Krzysztof Kozlowski

Fix dtschema validator warnings like:
    l2-cache: $nodename:0: 'l2-cache' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
---
 arch/arm/boot/dts/spear13xx.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/spear13xx.dtsi b/arch/arm/boot/dts/spear13xx.dtsi
index f187da4485f4..c87b881b2c8b 100644
--- a/arch/arm/boot/dts/spear13xx.dtsi
+++ b/arch/arm/boot/dts/spear13xx.dtsi
@@ -43,7 +43,7 @@
 			      0 7 0x04>;
 	};
 
-	L2: l2-cache {
+	L2: cache-controller {
 		    compatible = "arm,pl310-cache";
 		    reg = <0xed000000 0x1000>;
 		    cache-unified;
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [RESEND PATCH 4/5] ARM: dts: tango: Align L2 cache-controller nodename with dtschema
  2020-08-19 17:58 [RESEND PATCH 1/5] ARM: dts: prima: Align L2 cache-controller nodename with dtschema Krzysztof Kozlowski
  2020-08-19 17:58 ` [RESEND PATCH 2/5] ARM: dts: qcom: " Krzysztof Kozlowski
  2020-08-19 17:58 ` [RESEND PATCH 3/5] ARM: dts: spear: " Krzysztof Kozlowski
@ 2020-08-19 17:58 ` Krzysztof Kozlowski
  2020-08-19 18:22   ` Måns Rullgård
  2020-08-20  9:31   ` Krzysztof Kozlowski
  2020-08-19 17:58 ` [RESEND PATCH 5/5] ARM: dts: zx: " Krzysztof Kozlowski
  2020-08-20  9:30 ` [RESEND PATCH 1/5] ARM: dts: prima: " Krzysztof Kozlowski
  4 siblings, 2 replies; 13+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-19 17:58 UTC (permalink / raw)
  To: Barry Song, Rob Herring, Andy Gross, Bjorn Andersson,
	Viresh Kumar, Shiraz Hashim, Marc Gonzalez, Mans Rullgard,
	Jun Nie, Shawn Guo, linux-arm-kernel, devicetree, linux-kernel,
	linux-arm-msm
  Cc: Krzysztof Kozlowski

Fix dtschema validator warnings like:
    l2-cache-controller@20100000: $nodename:0:
        'l2-cache-controller@20100000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
---
 arch/arm/boot/dts/tango4-common.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/tango4-common.dtsi b/arch/arm/boot/dts/tango4-common.dtsi
index 54fd522badfc..d584da314500 100644
--- a/arch/arm/boot/dts/tango4-common.dtsi
+++ b/arch/arm/boot/dts/tango4-common.dtsi
@@ -51,7 +51,7 @@
 		};
 	};
 
-	l2cc: l2-cache-controller@20100000 {
+	l2cc: cache-controller@20100000 {
 		compatible = "arm,pl310-cache";
 		reg = <0x20100000 0x1000>;
 		cache-level = <2>;
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [RESEND PATCH 5/5] ARM: dts: zx: Align L2 cache-controller nodename with dtschema
  2020-08-19 17:58 [RESEND PATCH 1/5] ARM: dts: prima: Align L2 cache-controller nodename with dtschema Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2020-08-19 17:58 ` [RESEND PATCH 4/5] ARM: dts: tango: " Krzysztof Kozlowski
@ 2020-08-19 17:58 ` Krzysztof Kozlowski
  2020-08-20  9:30   ` Krzysztof Kozlowski
  2020-08-20  9:30 ` [RESEND PATCH 1/5] ARM: dts: prima: " Krzysztof Kozlowski
  4 siblings, 1 reply; 13+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-19 17:58 UTC (permalink / raw)
  To: Barry Song, Rob Herring, Andy Gross, Bjorn Andersson,
	Viresh Kumar, Shiraz Hashim, Marc Gonzalez, Mans Rullgard,
	Jun Nie, Shawn Guo, linux-arm-kernel, devicetree, linux-kernel,
	linux-arm-msm
  Cc: Krzysztof Kozlowski

Fix dtschema validator warnings like:
    l2-cache-controller@c00000: $nodename:0:
        'l2-cache-controller@c00000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
---
 arch/arm/boot/dts/zx296702.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/zx296702.dtsi b/arch/arm/boot/dts/zx296702.dtsi
index afd98de029be..f378c661b3bf 100644
--- a/arch/arm/boot/dts/zx296702.dtsi
+++ b/arch/arm/boot/dts/zx296702.dtsi
@@ -58,7 +58,7 @@
 			clocks = <&topclk ZX296702_A9_PERIPHCLK>;
 		};
 
-		l2cc: l2-cache-controller@c00000 {
+		l2cc: cache-controller@c00000 {
 			compatible = "arm,pl310-cache";
 			reg = <0x00c00000 0x1000>;
 			cache-unified;
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [RESEND PATCH 4/5] ARM: dts: tango: Align L2 cache-controller nodename with dtschema
  2020-08-19 17:58 ` [RESEND PATCH 4/5] ARM: dts: tango: " Krzysztof Kozlowski
@ 2020-08-19 18:22   ` Måns Rullgård
  2020-08-20  9:31   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 13+ messages in thread
From: Måns Rullgård @ 2020-08-19 18:22 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: devicetree, Barry Song, linux-kernel, Marc Gonzalez,
	Viresh Kumar, Andy Gross, Bjorn Andersson, Rob Herring,
	linux-arm-msm, Shawn Guo, Jun Nie, Shiraz Hashim,
	linux-arm-kernel

Krzysztof Kozlowski <krzk@kernel.org> writes:

> Fix dtschema validator warnings like:
>     l2-cache-controller@20100000: $nodename:0:
>         'l2-cache-controller@20100000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
>
> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>

Acked-by: Mans Rullgard <mans@mansr.com>

> ---
>  arch/arm/boot/dts/tango4-common.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/tango4-common.dtsi b/arch/arm/boot/dts/tango4-common.dtsi
> index 54fd522badfc..d584da314500 100644
> --- a/arch/arm/boot/dts/tango4-common.dtsi
> +++ b/arch/arm/boot/dts/tango4-common.dtsi
> @@ -51,7 +51,7 @@
>  		};
>  	};
>
> -	l2cc: l2-cache-controller@20100000 {
> +	l2cc: cache-controller@20100000 {
>  		compatible = "arm,pl310-cache";
>  		reg = <0x20100000 0x1000>;
>  		cache-level = <2>;
> -- 
> 2.17.1
>

-- 
Måns Rullgård

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [RESEND PATCH 3/5] ARM: dts: spear: Align L2 cache-controller nodename with dtschema
  2020-08-19 17:58 ` [RESEND PATCH 3/5] ARM: dts: spear: " Krzysztof Kozlowski
@ 2020-08-20  4:50   ` Viresh Kumar
  0 siblings, 0 replies; 13+ messages in thread
From: Viresh Kumar @ 2020-08-20  4:50 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: devicetree, Barry Song, Mans Rullgard, linux-kernel,
	Marc Gonzalez, Viresh Kumar, Andy Gross, Bjorn Andersson,
	Rob Herring, linux-arm-msm, Shawn Guo, Jun Nie, Shiraz Hashim,
	linux-arm-kernel

On 19-08-20, 19:58, Krzysztof Kozlowski wrote:
> Fix dtschema validator warnings like:
>     l2-cache: $nodename:0: 'l2-cache' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
> 
> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
> ---
>  arch/arm/boot/dts/spear13xx.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/boot/dts/spear13xx.dtsi b/arch/arm/boot/dts/spear13xx.dtsi
> index f187da4485f4..c87b881b2c8b 100644
> --- a/arch/arm/boot/dts/spear13xx.dtsi
> +++ b/arch/arm/boot/dts/spear13xx.dtsi
> @@ -43,7 +43,7 @@
>  			      0 7 0x04>;
>  	};
>  
> -	L2: l2-cache {
> +	L2: cache-controller {
>  		    compatible = "arm,pl310-cache";
>  		    reg = <0xed000000 0x1000>;
>  		    cache-unified;

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

-- 
viresh

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [RESEND PATCH 5/5] ARM: dts: zx: Align L2 cache-controller nodename with dtschema
  2020-08-19 17:58 ` [RESEND PATCH 5/5] ARM: dts: zx: " Krzysztof Kozlowski
@ 2020-08-20  9:30   ` Krzysztof Kozlowski
  2020-08-30 15:00     ` Krzysztof Kozlowski
  0 siblings, 1 reply; 13+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-20  9:30 UTC (permalink / raw)
  To: Barry Song, Rob Herring, Andy Gross, Bjorn Andersson,
	Viresh Kumar, Shiraz Hashim, Marc Gonzalez, Mans Rullgard,
	Jun Nie, Shawn Guo, linux-arm-kernel, devicetree, linux-kernel,
	linux-arm-msm

On Wed, Aug 19, 2020 at 07:58:53PM +0200, Krzysztof Kozlowski wrote:
> Fix dtschema validator warnings like:
>     l2-cache-controller@c00000: $nodename:0:
>         'l2-cache-controller@c00000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
> 
> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>

I forgot to add the tag from Jun provided on previous submission:
Reviewed-by: Jun Nie <jun.nie@linaro.org>

Best regards,
Krzysztof

> ---
>  arch/arm/boot/dts/zx296702.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/boot/dts/zx296702.dtsi b/arch/arm/boot/dts/zx296702.dtsi
> index afd98de029be..f378c661b3bf 100644
> --- a/arch/arm/boot/dts/zx296702.dtsi
> +++ b/arch/arm/boot/dts/zx296702.dtsi
> @@ -58,7 +58,7 @@
>  			clocks = <&topclk ZX296702_A9_PERIPHCLK>;
>  		};
>  
> -		l2cc: l2-cache-controller@c00000 {
> +		l2cc: cache-controller@c00000 {
>  			compatible = "arm,pl310-cache";
>  			reg = <0x00c00000 0x1000>;
>  			cache-unified;
> -- 
> 2.17.1
> 

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [RESEND PATCH 1/5] ARM: dts: prima: Align L2 cache-controller nodename with dtschema
  2020-08-19 17:58 [RESEND PATCH 1/5] ARM: dts: prima: Align L2 cache-controller nodename with dtschema Krzysztof Kozlowski
                   ` (3 preceding siblings ...)
  2020-08-19 17:58 ` [RESEND PATCH 5/5] ARM: dts: zx: " Krzysztof Kozlowski
@ 2020-08-20  9:30 ` Krzysztof Kozlowski
  2020-08-30 14:59   ` Krzysztof Kozlowski
  4 siblings, 1 reply; 13+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-20  9:30 UTC (permalink / raw)
  To: Barry Song, Rob Herring, Andy Gross, Bjorn Andersson,
	Viresh Kumar, Shiraz Hashim, Marc Gonzalez, Mans Rullgard,
	Jun Nie, Shawn Guo, linux-arm-kernel, devicetree, linux-kernel,
	linux-arm-msm

On Wed, Aug 19, 2020 at 07:58:49PM +0200, Krzysztof Kozlowski wrote:
> Fix dtschema validator warnings like:
>     l2-cache-controller@80040000: $nodename:0:
>         'l2-cache-controller@80040000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
> 
> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
> ---
>  arch/arm/boot/dts/prima2.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

I forgot to add the tag provided on previous submission:
Acked-by: Barry Song <baohua@kernel.org>

Best regards,
Krzysztof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [RESEND PATCH 4/5] ARM: dts: tango: Align L2 cache-controller nodename with dtschema
  2020-08-19 17:58 ` [RESEND PATCH 4/5] ARM: dts: tango: " Krzysztof Kozlowski
  2020-08-19 18:22   ` Måns Rullgård
@ 2020-08-20  9:31   ` Krzysztof Kozlowski
  2020-08-30 14:59     ` Krzysztof Kozlowski
  1 sibling, 1 reply; 13+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-20  9:31 UTC (permalink / raw)
  To: Barry Song, Rob Herring, Andy Gross, Bjorn Andersson,
	Viresh Kumar, Shiraz Hashim, Marc Gonzalez, Mans Rullgard,
	Jun Nie, Shawn Guo, linux-arm-kernel, devicetree, linux-kernel,
	linux-arm-msm

On Wed, Aug 19, 2020 at 07:58:52PM +0200, Krzysztof Kozlowski wrote:
> Fix dtschema validator warnings like:
>     l2-cache-controller@20100000: $nodename:0:
>         'l2-cache-controller@20100000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
> 
> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
> ---
>  arch/arm/boot/dts/tango4-common.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

I forgot to add the tag provided on previous submission:
Acked-by: Mans Rullgard <mans@mansr.com>

Best regards,
Krzysztof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [RESEND PATCH 4/5] ARM: dts: tango: Align L2 cache-controller nodename with dtschema
  2020-08-20  9:31   ` Krzysztof Kozlowski
@ 2020-08-30 14:59     ` Krzysztof Kozlowski
  0 siblings, 0 replies; 13+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-30 14:59 UTC (permalink / raw)
  To: Barry Song, Rob Herring, Andy Gross, Bjorn Andersson,
	Viresh Kumar, Shiraz Hashim, Marc Gonzalez, Mans Rullgard,
	Jun Nie, Shawn Guo, linux-arm-kernel, devicetree, linux-kernel,
	linux-arm-msm

On Thu, Aug 20, 2020 at 11:31:18AM +0200, Krzysztof Kozlowski wrote:
> On Wed, Aug 19, 2020 at 07:58:52PM +0200, Krzysztof Kozlowski wrote:
> > Fix dtschema validator warnings like:
> >     l2-cache-controller@20100000: $nodename:0:
> >         'l2-cache-controller@20100000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
> > 
> > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
> > ---
> >  arch/arm/boot/dts/tango4-common.dtsi | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> I forgot to add the tag provided on previous submission:
> Acked-by: Mans Rullgard <mans@mansr.com>

Hi,

Ping, any comments here?

Best regards,
Krzysztof


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [RESEND PATCH 1/5] ARM: dts: prima: Align L2 cache-controller nodename with dtschema
  2020-08-20  9:30 ` [RESEND PATCH 1/5] ARM: dts: prima: " Krzysztof Kozlowski
@ 2020-08-30 14:59   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 13+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-30 14:59 UTC (permalink / raw)
  To: Barry Song, Rob Herring, Andy Gross, Bjorn Andersson,
	Viresh Kumar, Shiraz Hashim, Marc Gonzalez, Mans Rullgard,
	Jun Nie, Shawn Guo, linux-arm-kernel, devicetree, linux-kernel,
	linux-arm-msm

On Thu, Aug 20, 2020 at 11:30:53AM +0200, Krzysztof Kozlowski wrote:
> On Wed, Aug 19, 2020 at 07:58:49PM +0200, Krzysztof Kozlowski wrote:
> > Fix dtschema validator warnings like:
> >     l2-cache-controller@80040000: $nodename:0:
> >         'l2-cache-controller@80040000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
> > 
> > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
> > ---
> >  arch/arm/boot/dts/prima2.dtsi | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> 
> I forgot to add the tag provided on previous submission:
> Acked-by: Barry Song <baohua@kernel.org>
> 
> Best regards,
> Krzysztof

Hi,

Ping, any comments here?

Best regards,
Krzysztof


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [RESEND PATCH 5/5] ARM: dts: zx: Align L2 cache-controller nodename with dtschema
  2020-08-20  9:30   ` Krzysztof Kozlowski
@ 2020-08-30 15:00     ` Krzysztof Kozlowski
  0 siblings, 0 replies; 13+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-30 15:00 UTC (permalink / raw)
  To: Barry Song, Rob Herring, Andy Gross, Bjorn Andersson,
	Viresh Kumar, Shiraz Hashim, Marc Gonzalez, Mans Rullgard,
	Jun Nie, Shawn Guo, linux-arm-kernel, devicetree, linux-kernel,
	linux-arm-msm

On Thu, Aug 20, 2020 at 11:30:10AM +0200, Krzysztof Kozlowski wrote:
> On Wed, Aug 19, 2020 at 07:58:53PM +0200, Krzysztof Kozlowski wrote:
> > Fix dtschema validator warnings like:
> >     l2-cache-controller@c00000: $nodename:0:
> >         'l2-cache-controller@c00000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
> > 
> > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
> 
> I forgot to add the tag from Jun provided on previous submission:
> Reviewed-by: Jun Nie <jun.nie@linaro.org>
> 
> Best regards,
> Krzysztof
> 

Hi,

Ping, any comments here? Can anyone pick it up?

Best regards,
Krzysztof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2020-08-30 15:01 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-19 17:58 [RESEND PATCH 1/5] ARM: dts: prima: Align L2 cache-controller nodename with dtschema Krzysztof Kozlowski
2020-08-19 17:58 ` [RESEND PATCH 2/5] ARM: dts: qcom: " Krzysztof Kozlowski
2020-08-19 17:58 ` [RESEND PATCH 3/5] ARM: dts: spear: " Krzysztof Kozlowski
2020-08-20  4:50   ` Viresh Kumar
2020-08-19 17:58 ` [RESEND PATCH 4/5] ARM: dts: tango: " Krzysztof Kozlowski
2020-08-19 18:22   ` Måns Rullgård
2020-08-20  9:31   ` Krzysztof Kozlowski
2020-08-30 14:59     ` Krzysztof Kozlowski
2020-08-19 17:58 ` [RESEND PATCH 5/5] ARM: dts: zx: " Krzysztof Kozlowski
2020-08-20  9:30   ` Krzysztof Kozlowski
2020-08-30 15:00     ` Krzysztof Kozlowski
2020-08-20  9:30 ` [RESEND PATCH 1/5] ARM: dts: prima: " Krzysztof Kozlowski
2020-08-30 14:59   ` Krzysztof Kozlowski

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