linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: berlin: Align L2 cache-controller nodename with dtschema
@ 2020-06-26  8:06 Krzysztof Kozlowski
  2020-07-28  6:36 ` Jisheng Zhang
  0 siblings, 1 reply; 4+ messages in thread
From: Krzysztof Kozlowski @ 2020-06-26  8:06 UTC (permalink / raw)
  To: linux-kernel
  Cc: Krzysztof Kozlowski, Jisheng Zhang, Sebastian Hesselbarth,
	Rob Herring, linux-arm-kernel, devicetree

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

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
---
 arch/arm/boot/dts/berlin2.dtsi   | 2 +-
 arch/arm/boot/dts/berlin2cd.dtsi | 2 +-
 arch/arm/boot/dts/berlin2q.dtsi  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/boot/dts/berlin2.dtsi b/arch/arm/boot/dts/berlin2.dtsi
index 3ab3cd250da7..6194857f8a02 100644
--- a/arch/arm/boot/dts/berlin2.dtsi
+++ b/arch/arm/boot/dts/berlin2.dtsi
@@ -106,7 +106,7 @@
 			status = "disabled";
 		};
 
-		l2: l2-cache-controller@ac0000 {
+		l2: cache-controller@ac0000 {
 			compatible = "marvell,tauros3-cache", "arm,pl310-cache";
 			reg = <0xac0000 0x1000>;
 			cache-unified;
diff --git a/arch/arm/boot/dts/berlin2cd.dtsi b/arch/arm/boot/dts/berlin2cd.dtsi
index 7cf3e6302d75..6f30d7eb3b41 100644
--- a/arch/arm/boot/dts/berlin2cd.dtsi
+++ b/arch/arm/boot/dts/berlin2cd.dtsi
@@ -71,7 +71,7 @@
 			status = "disabled";
 		};
 
-		l2: l2-cache-controller@ac0000 {
+		l2: cache-controller@ac0000 {
 			compatible = "arm,pl310-cache";
 			reg = <0xac0000 0x1000>;
 			cache-unified;
diff --git a/arch/arm/boot/dts/berlin2q.dtsi b/arch/arm/boot/dts/berlin2q.dtsi
index c44a32e873f4..b6a0acac6836 100644
--- a/arch/arm/boot/dts/berlin2q.dtsi
+++ b/arch/arm/boot/dts/berlin2q.dtsi
@@ -149,7 +149,7 @@
 			status = "disabled";
 		};
 
-		l2: l2-cache-controller@ac0000 {
+		l2: cache-controller@ac0000 {
 			compatible = "arm,pl310-cache";
 			reg = <0xac0000 0x1000>;
 			cache-unified;
-- 
2.17.1


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

* Re: [PATCH] ARM: dts: berlin: Align L2 cache-controller nodename with dtschema
  2020-06-26  8:06 [PATCH] ARM: dts: berlin: Align L2 cache-controller nodename with dtschema Krzysztof Kozlowski
@ 2020-07-28  6:36 ` Jisheng Zhang
  2020-07-28  7:33   ` Arnd Bergmann
  0 siblings, 1 reply; 4+ messages in thread
From: Jisheng Zhang @ 2020-07-28  6:36 UTC (permalink / raw)
  To: Krzysztof Kozlowski, SoC Team, Arnd Bergmann, Kevin Hilman,
	Olof Johansson
  Cc: linux-kernel, Sebastian Hesselbarth, Rob Herring,
	linux-arm-kernel, devicetree

Hi arm-soc,


On Fri, 26 Jun 2020 10:06:41 +0200 Krzysztof Kozlowski wrote:

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

Reviewed-by: Jisheng Zhang <Jisheng.Zhang@synaptics.com>

As for berlin linux-5.9, we only have this one patch, could you please
directly take this patch?

Thanks

> ---
>  arch/arm/boot/dts/berlin2.dtsi   | 2 +-
>  arch/arm/boot/dts/berlin2cd.dtsi | 2 +-
>  arch/arm/boot/dts/berlin2q.dtsi  | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/berlin2.dtsi b/arch/arm/boot/dts/berlin2.dtsi
> index 3ab3cd250da7..6194857f8a02 100644
> --- a/arch/arm/boot/dts/berlin2.dtsi
> +++ b/arch/arm/boot/dts/berlin2.dtsi
> @@ -106,7 +106,7 @@
>                         status = "disabled";
>                 };
> 
> -               l2: l2-cache-controller@ac0000 {
> +               l2: cache-controller@ac0000 {
>                         compatible = "marvell,tauros3-cache", "arm,pl310-cache";
>                         reg = <0xac0000 0x1000>;
>                         cache-unified;
> diff --git a/arch/arm/boot/dts/berlin2cd.dtsi b/arch/arm/boot/dts/berlin2cd.dtsi
> index 7cf3e6302d75..6f30d7eb3b41 100644
> --- a/arch/arm/boot/dts/berlin2cd.dtsi
> +++ b/arch/arm/boot/dts/berlin2cd.dtsi
> @@ -71,7 +71,7 @@
>                         status = "disabled";
>                 };
> 
> -               l2: l2-cache-controller@ac0000 {
> +               l2: cache-controller@ac0000 {
>                         compatible = "arm,pl310-cache";
>                         reg = <0xac0000 0x1000>;
>                         cache-unified;
> diff --git a/arch/arm/boot/dts/berlin2q.dtsi b/arch/arm/boot/dts/berlin2q.dtsi
> index c44a32e873f4..b6a0acac6836 100644
> --- a/arch/arm/boot/dts/berlin2q.dtsi
> +++ b/arch/arm/boot/dts/berlin2q.dtsi
> @@ -149,7 +149,7 @@
>                         status = "disabled";
>                 };
> 
> -               l2: l2-cache-controller@ac0000 {
> +               l2: cache-controller@ac0000 {
>                         compatible = "arm,pl310-cache";
>                         reg = <0xac0000 0x1000>;
>                         cache-unified;
> --
> 2.17.1
> 


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

* Re: [PATCH] ARM: dts: berlin: Align L2 cache-controller nodename with dtschema
  2020-07-28  6:36 ` Jisheng Zhang
@ 2020-07-28  7:33   ` Arnd Bergmann
  2020-07-28  7:42     ` Jisheng Zhang
  0 siblings, 1 reply; 4+ messages in thread
From: Arnd Bergmann @ 2020-07-28  7:33 UTC (permalink / raw)
  To: Jisheng Zhang
  Cc: Krzysztof Kozlowski, SoC Team, Kevin Hilman, Olof Johansson,
	linux-kernel, Sebastian Hesselbarth, Rob Herring, Linux ARM,
	DTML

On Tue, Jul 28, 2020 at 8:37 AM Jisheng Zhang
<Jisheng.Zhang@synaptics.com> wrote:
>
> Hi arm-soc,
>
>
> On Fri, 26 Jun 2020 10:06:41 +0200 Krzysztof Kozlowski wrote:
>
> >
> >
> > Fix dtschema validator warnings like:
> >     l2-cache-controller@ac0000: $nodename:0:
> >         'l2-cache-controller@ac0000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
> >
> > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
>
> Reviewed-by: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
>
> As for berlin linux-5.9, we only have this one patch, could you please
> directly take this patch?

Applied now. To ensure we actually see the patch, it's better if you can just
send a new copy with your added Signed-off-by to soc@kernel.org than to
reply to the original email.

Thanks,

     Arnd

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

* Re: [PATCH] ARM: dts: berlin: Align L2 cache-controller nodename with dtschema
  2020-07-28  7:33   ` Arnd Bergmann
@ 2020-07-28  7:42     ` Jisheng Zhang
  0 siblings, 0 replies; 4+ messages in thread
From: Jisheng Zhang @ 2020-07-28  7:42 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Krzysztof Kozlowski, SoC Team, Kevin Hilman, Olof Johansson,
	linux-kernel, Sebastian Hesselbarth, Rob Herring, Linux ARM,
	DTML

On Tue, 28 Jul 2020 09:33:05 +0200 Arnd Bergmann wrote:


> 
> 
> On Tue, Jul 28, 2020 at 8:37 AM Jisheng Zhang
> <Jisheng.Zhang@synaptics.com> wrote:
> >
> > Hi arm-soc,
> >
> >
> > On Fri, 26 Jun 2020 10:06:41 +0200 Krzysztof Kozlowski wrote:
> >  
> > >
> > >
> > > Fix dtschema validator warnings like:
> > >     l2-cache-controller@ac0000: $nodename:0:
> > >         'l2-cache-controller@ac0000' does not match '^(cache-controller|cpu)(@[0-9a-f,]+)*$'
> > >
> > > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>  
> >
> > Reviewed-by: Jisheng Zhang <Jisheng.Zhang@synaptics.com>
> >
> > As for berlin linux-5.9, we only have this one patch, could you please
> > directly take this patch?  
> 
> Applied now. To ensure we actually see the patch, it's better if you can just
> send a new copy with your added Signed-off-by to soc@kernel.org than to
> reply to the original email.
> 

Got it. Thanks for the your kind reminding

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

end of thread, other threads:[~2020-07-28  7:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-26  8:06 [PATCH] ARM: dts: berlin: Align L2 cache-controller nodename with dtschema Krzysztof Kozlowski
2020-07-28  6:36 ` Jisheng Zhang
2020-07-28  7:33   ` Arnd Bergmann
2020-07-28  7:42     ` Jisheng Zhang

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