ARM: dts: s5pv210: remove DMA controller bus node name to fix dtschema warnings
authorKrzysztof Kozlowski <krzk@kernel.org>
Mon, 7 Sep 2020 16:11:21 +0000 (18:11 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 10 Nov 2020 09:23:55 +0000 (10:23 +0100)
[ Upstream commit ea4e792f3c8931fffec4d700cf6197d84e9f35a6 ]

There is no need to keep DMA controller nodes under AMBA bus node.
Remove the "amba" node to fix dtschema warnings like:

  amba: $nodename:0: 'amba' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Tested-by: Jonathan Bakker <xc-racer2@live.ca>
Link: https://lore.kernel.org/r/20200907161141.31034-6-krzk@kernel.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/arm/boot/dts/s5pv210.dtsi

index 0c10ba517cd0418e3884accda6d817431fe2a4e2..57f64a71602906d1d436f3f09f1832e4f287a861 100644 (file)
                        };
                };
 
-               amba {
-                       #address-cells = <1>;
-                       #size-cells = <1>;
-                       compatible = "simple-bus";
-                       ranges;
-
-                       pdma0: dma@e0900000 {
-                               compatible = "arm,pl330", "arm,primecell";
-                               reg = <0xe0900000 0x1000>;
-                               interrupt-parent = <&vic0>;
-                               interrupts = <19>;
-                               clocks = <&clocks CLK_PDMA0>;
-                               clock-names = "apb_pclk";
-                               #dma-cells = <1>;
-                               #dma-channels = <8>;
-                               #dma-requests = <32>;
-                       };
+               pdma0: dma@e0900000 {
+                       compatible = "arm,pl330", "arm,primecell";
+                       reg = <0xe0900000 0x1000>;
+                       interrupt-parent = <&vic0>;
+                       interrupts = <19>;
+                       clocks = <&clocks CLK_PDMA0>;
+                       clock-names = "apb_pclk";
+                       #dma-cells = <1>;
+                       #dma-channels = <8>;
+                       #dma-requests = <32>;
+               };
 
-                       pdma1: dma@e0a00000 {
-                               compatible = "arm,pl330", "arm,primecell";
-                               reg = <0xe0a00000 0x1000>;
-                               interrupt-parent = <&vic0>;
-                               interrupts = <20>;
-                               clocks = <&clocks CLK_PDMA1>;
-                               clock-names = "apb_pclk";
-                               #dma-cells = <1>;
-                               #dma-channels = <8>;
-                               #dma-requests = <32>;
-                       };
+               pdma1: dma@e0a00000 {
+                       compatible = "arm,pl330", "arm,primecell";
+                       reg = <0xe0a00000 0x1000>;
+                       interrupt-parent = <&vic0>;
+                       interrupts = <20>;
+                       clocks = <&clocks CLK_PDMA1>;
+                       clock-names = "apb_pclk";
+                       #dma-cells = <1>;
+                       #dma-channels = <8>;
+                       #dma-requests = <32>;
                };
 
                spi0: spi@e1300000 {