Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b222de02 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Alexandre Belloni
Browse files

ARM: dts: at91: at91sam9xx5ek: Style cleanup



- newline between properties and sub-nodes
- use tags from included dtsi instead of duplicating the hierarchy

There are no differences in the generated .dtbs

Signed-off-by: default avatarUwe Kleine-König <uwe@kleine-koenig.org>
Link: https://lore.kernel.org/r/20190812212757.23432-7-uwe@kleine-koenig.org


Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent c1ad3ffb
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -14,14 +14,6 @@
	model = "Atmel AT91SAM9G15-EK";
	compatible = "atmel,at91sam9g15ek", "atmel,at91sam9x5ek", "atmel,at91sam9x5", "atmel,at91sam9";

	ahb {
		apb {
			hlcdc: hlcdc@f8038000 {
				status = "okay";
			};
		};
	};

	backlight: backlight {
		status = "okay";
	};
@@ -38,3 +30,7 @@
		status = "okay";
	};
};

&hlcdc {
	status = "okay";
};
+43 −46
Original line number Diff line number Diff line
@@ -12,19 +12,10 @@
/ {
	model = "Atmel AT91SAM9G25-EK";
	compatible = "atmel,at91sam9g25ek", "atmel,at91sam9x5ek", "atmel,at91sam9x5", "atmel,at91sam9";

	ahb {
		apb {
			spi0: spi@f0000000 {
				status = "disabled";
			};

			mmc1: mmc@f000c000 {
				status = "disabled";
};

			i2c0: i2c@f8010000 {
				ov2640: camera@30 {
&i2c0 {
	camera@30 {
		compatible = "ovti,ov2640";
		reg = <0x30>;
		pinctrl-names = "default";
@@ -46,13 +37,9 @@
	};
};

			macb0: ethernet@f802c000 {
				phy-mode = "rmii";
&isi {
	status = "okay";
			};

			isi: isi@f8048000 {
				status = "okay";
	port {
		isi_0: endpoint@0 {
			reg = <0>;
@@ -63,6 +50,16 @@
		};
	};
};

&macb0 {
	phy-mode = "rmii";
	status = "okay";
};

&mmc1 {
	status = "disabled";
};

&spi0 {
	status = "disabled";
};
+9 −13
Original line number Diff line number Diff line
@@ -14,32 +14,28 @@
	model = "Atmel AT91SAM9G35-EK";
	compatible = "atmel,at91sam9g35ek", "atmel,at91sam9x5ek", "atmel,at91sam9x5", "atmel,at91sam9";

	ahb {
		apb {
			macb0: ethernet@f802c000 {
				phy-mode = "rmii";
	backlight: backlight {
		status = "okay";
	};

			hlcdc: hlcdc@f8038000 {
	bl_reg: backlight_regulator {
		status = "okay";
	};
		};
	};

	backlight: backlight {
	panel: panel {
		status = "okay";
	};

	bl_reg: backlight_regulator {
	panel_reg: panel_regulator {
		status = "okay";
	};
};

	panel: panel {
&hlcdc {
	status = "okay";
};

	panel_reg: panel_regulator {
&macb0 {
	phy-mode = "rmii";
	status = "okay";
};
};
+16 −20
Original line number Diff line number Diff line
@@ -12,28 +12,24 @@
/ {
	model = "Atmel AT91SAM9X25-EK";
	compatible = "atmel,at91sam9x25ek", "atmel,at91sam9x5ek", "atmel,at91sam9x5", "atmel,at91sam9";
};

	ahb {
		apb {
			can1: can@f8004000 {
&can1 {
	status = "okay";
};

			macb0: ethernet@f802c000 {
&macb0 {
	phy-mode = "rmii";
	status = "okay";
};

			macb1: ethernet@f8030000 {
&macb1 {
	phy-mode = "rmii";
	status = "okay";
};

			pwm0: pwm@f8034000 {
&pwm0 {
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_pwm0_pwm0_1>;
	status = "okay";
};
		};
	};
};
+20 −23
Original line number Diff line number Diff line
@@ -13,32 +13,29 @@
/ {
	model = "Atmel AT91SAM9X35-EK";
	compatible = "atmel,at91sam9x35ek", "atmel,at91sam9x5ek", "atmel,at91sam9x5", "atmel,at91sam9";
};

	ahb {
		apb {
			macb0: ethernet@f802c000 {
				phy-mode = "rmii";
&backlight {
	status = "okay";
};
			hlcdc: hlcdc@f8038000 {

&bl_reg {
	status = "okay";
};
		};
	};

	backlight: backlight {
&hlcdc {
	status = "okay";
};

	bl_reg: backlight_regulator {
&macb0 {
	phy-mode = "rmii";
	status = "okay";
};

	panel: panel {
&panel {
	status = "okay";
};

	panel_reg: panel_regulator {
&panel_reg {
	status = "okay";
};
};
Loading