linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] arm64: dts: stratix10: align pl330 node name with dtschema
@ 2022-01-29 17:55 Krzysztof Kozlowski
  2022-01-29 17:55 ` [PATCH 2/2] arm64: dts: agilex: " Krzysztof Kozlowski
  0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Kozlowski @ 2022-01-29 17:55 UTC (permalink / raw)
  To: Dinh Nguyen, Rob Herring, devicetree, linux-kernel; +Cc: Krzysztof Kozlowski

Fixes dtbs_check warnings like:

  pdma@ffda0000: $nodename:0: 'pdma@ffda0000' does not match '^dma-controller(@.*)?$'

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
---
 arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi b/arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi
index 4124021768b1..da032a6f71da 100644
--- a/arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi
+++ b/arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi
@@ -333,7 +333,7 @@ ocram: sram@ffe00000 {
 			reg = <0xffe00000 0x100000>;
 		};
 
-		pdma: pdma@ffda0000 {
+		pdma: dma-controller@ffda0000 {
 			compatible = "arm,pl330", "arm,primecell";
 			reg = <0xffda0000 0x1000>;
 			interrupts = <0 81 4>,
-- 
2.32.0


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

* [PATCH 2/2] arm64: dts: agilex: align pl330 node name with dtschema
  2022-01-29 17:55 [PATCH 1/2] arm64: dts: stratix10: align pl330 node name with dtschema Krzysztof Kozlowski
@ 2022-01-29 17:55 ` Krzysztof Kozlowski
  2022-01-31 16:21   ` Dinh Nguyen
  0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Kozlowski @ 2022-01-29 17:55 UTC (permalink / raw)
  To: Dinh Nguyen, Rob Herring, devicetree, linux-kernel; +Cc: Krzysztof Kozlowski

Fixes dtbs_check warnings like:

  pdma@ffda0000: $nodename:0: 'pdma@ffda0000' does not match '^dma-controller(@.*)?$'

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
---
 arch/arm64/boot/dts/intel/socfpga_agilex.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi b/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi
index 63dd4e69c962..1f4618c1062e 100644
--- a/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi
+++ b/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi
@@ -337,7 +337,7 @@ ocram: sram@ffe00000 {
 			reg = <0xffe00000 0x40000>;
 		};
 
-		pdma: pdma@ffda0000 {
+		pdma: dma-controller@ffda0000 {
 			compatible = "arm,pl330", "arm,primecell";
 			reg = <0xffda0000 0x1000>;
 			interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>,
-- 
2.32.0


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

* Re: [PATCH 2/2] arm64: dts: agilex: align pl330 node name with dtschema
  2022-01-29 17:55 ` [PATCH 2/2] arm64: dts: agilex: " Krzysztof Kozlowski
@ 2022-01-31 16:21   ` Dinh Nguyen
  0 siblings, 0 replies; 3+ messages in thread
From: Dinh Nguyen @ 2022-01-31 16:21 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Rob Herring, devicetree, linux-kernel



On 1/29/22 11:55, Krzysztof Kozlowski wrote:
> Fixes dtbs_check warnings like:
> 
>    pdma@ffda0000: $nodename:0: 'pdma@ffda0000' does not match '^dma-controller(@.*)?$'
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
> ---
>   arch/arm64/boot/dts/intel/socfpga_agilex.dtsi | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi b/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi
> index 63dd4e69c962..1f4618c1062e 100644
> --- a/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi
> +++ b/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi
> @@ -337,7 +337,7 @@ ocram: sram@ffe00000 {
>   			reg = <0xffe00000 0x40000>;
>   		};
>   
> -		pdma: pdma@ffda0000 {
> +		pdma: dma-controller@ffda0000 {
>   			compatible = "arm,pl330", "arm,primecell";
>   			reg = <0xffda0000 0x1000>;
>   			interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>,

Both patches applied!

Thanks,
Dinh

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

end of thread, other threads:[~2022-01-31 16:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-29 17:55 [PATCH 1/2] arm64: dts: stratix10: align pl330 node name with dtschema Krzysztof Kozlowski
2022-01-29 17:55 ` [PATCH 2/2] arm64: dts: agilex: " Krzysztof Kozlowski
2022-01-31 16:21   ` Dinh Nguyen

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