Commit f91423e9 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski
Browse files

ARM: dts: exynos: Remove DMA controller bus node name to fix dtschema warnings



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 '^(bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'

Signed-off-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
Tested-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Reviewed-by: default avatarAlim Akhtar <alim.akhtar@samsung.com>
parent 01ff9ff3
Loading
Loading
Loading
Loading
+20 −27
Original line number Diff line number Diff line
@@ -418,12 +418,6 @@
			status = "disabled";
		};

		amba {
			compatible = "simple-bus";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges;

		pdma0: pdma@12680000 {
			compatible = "arm,pl330", "arm,primecell";
			reg = <0x12680000 0x1000>;
@@ -445,7 +439,6 @@
			#dma-channels = <8>;
			#dma-requests = <32>;
		};
		};

		adc: adc@126c0000 {
			compatible = "samsung,exynos3250-adc";
+31 −39
Original line number Diff line number Diff line
@@ -669,13 +669,6 @@
			status = "disabled";
		};

		amba: amba {
			#address-cells = <1>;
			#size-cells = <1>;
			compatible = "simple-bus";
			interrupt-parent = <&gic>;
			ranges;

		pdma0: pdma@12680000 {
			compatible = "arm,pl330", "arm,primecell";
			reg = <0x12680000 0x1000>;
@@ -708,7 +701,6 @@
			#dma-channels = <8>;
			#dma-requests = <1>;
		};
		};

		fimd: fimd@11c00000 {
			compatible = "samsung,exynos4210-fimd";
+14 −14
Original line number Diff line number Diff line
@@ -181,20 +181,6 @@
	};
};

&amba {
	mdma0: mdma@12840000 {
		compatible = "arm,pl330", "arm,primecell";
		reg = <0x12840000 0x1000>;
		interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
		clocks = <&clock CLK_MDMA>;
		clock-names = "apb_pclk";
		#dma-cells = <1>;
		#dma-channels = <8>;
		#dma-requests = <1>;
		power-domains = <&pd_lcd0>;
	};
};

&camera {
	status = "okay";

@@ -616,6 +602,20 @@
	/delete-property/dma-names;
};

&soc {
	mdma0: mdma@12840000 {
		compatible = "arm,pl330", "arm,primecell";
		reg = <0x12840000 0x1000>;
		interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
		clocks = <&clock CLK_MDMA>;
		clock-names = "apb_pclk";
		#dma-cells = <1>;
		#dma-channels = <8>;
		#dma-requests = <1>;
		power-domains = <&pd_lcd0>;
	};
};

&sysram {
	smp-sram@0 {
		status = "disabled";
+42 −50
Original line number Diff line number Diff line
@@ -679,13 +679,6 @@
			samsung,pmureg-phandle = <&pmu_system_controller>;
		};

		amba {
			#address-cells = <1>;
			#size-cells = <1>;
			compatible = "simple-bus";
			interrupt-parent = <&gic>;
			ranges;

		pdma0: pdma@121a0000 {
			compatible = "arm,pl330", "arm,primecell";
			reg = <0x121A0000 0x1000>;
@@ -729,7 +722,6 @@
			#dma-channels = <8>;
			#dma-requests = <1>;
		};
		};

		gsc_0:  gsc@13e00000 {
			compatible = "samsung,exynos5250-gsc", "samsung,exynos5-gsc";
+19 −27
Original line number Diff line number Diff line
@@ -189,13 +189,6 @@
			interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
		};

		amba {
			#address-cells = <1>;
			#size-cells = <1>;
			compatible = "simple-bus";
			interrupt-parent = <&gic>;
			ranges;

		pdma0: pdma@121a0000 {
			compatible = "arm,pl330", "arm,primecell";
			reg = <0x121a0000 0x1000>;
@@ -217,7 +210,6 @@
			#dma-channels = <8>;
			#dma-requests = <32>;
		};
		};

		audi2s0: i2s@3830000 {
			compatible = "samsung,exynos5420-i2s";
Loading