Commit cd6228b7 authored by Alexandre Belloni's avatar Alexandre Belloni
Browse files

ARM: dts: at91: fix sram nodes



The ranges, #address-cells and #size-cells properties are mandatory, add
them to the sram nodes.

Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
Reviewed-by: default avatarNicolas Ferre <nicolas.ferre@microchip.com>
Link: https://lore.kernel.org/r/20200831171129.3886857-4-alexandre.belloni@bootlin.com
parent 58f98494
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -71,6 +71,9 @@ main_xtal: main_xtal {
	sram: sram@200000 {
		compatible = "mmio-sram";
		reg = <0x00200000 0x4000>;
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0 0x00200000 0x4000>;
	};

	ahb {
+3 −0
Original line number Diff line number Diff line
@@ -74,6 +74,9 @@ adc_op_clk: adc_op_clk{
	sram0: sram@2ff000 {
		compatible = "mmio-sram";
		reg = <0x002ff000 0x2000>;
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0 0x002ff000 0x2000>;
	};

	ahb {
+3 −0
Original line number Diff line number Diff line
@@ -65,6 +65,9 @@ slow_xtal: slow_xtal {
	sram: sram@300000 {
		compatible = "mmio-sram";
		reg = <0x00300000 0x28000>;
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0 0x00300000 0x28000>;
	};

	ahb {
+6 −0
Original line number Diff line number Diff line
@@ -67,11 +67,17 @@ slow_xtal: slow_xtal {
	sram0: sram@300000 {
		compatible = "mmio-sram";
		reg = <0x00300000 0x14000>;
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0 0x00300000 0x14000>;
	};

	sram1: sram@500000 {
		compatible = "mmio-sram";
		reg = <0x00500000 0x4000>;
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0 0x00500000 0x4000>;
	};

	ahb {
+3 −0
Original line number Diff line number Diff line
@@ -22,6 +22,9 @@ sram0: sram@2ff000 {
	sram1: sram@2fc000 {
		compatible = "mmio-sram";
		reg = <0x002fc000 0x8000>;
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0 0x002fc000 0x8000>;
	};

	ahb {
Loading