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

Commit ec9686c4 authored by Kumar Gala's avatar Kumar Gala
Browse files

[POWERPC] FSL: I2C device tree cleanups



* Removed device_type = "i2c"
* Added missing second I2C controller on MPC8548 CDS, MPC8544 DS
* Added #address-cells, #size-cells, and cell-index where missing

Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent 1c1d1672
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ XXXX add flash parts, rtc, ??
		i2c@80003000 {
			#address-cells = <1>;
			#size-cells = <0>;
			device_type = "i2c";
			cell-index = <0>;
			compatible = "fsl-i2c";
			reg = <80003000 1000>;
			interrupts = <5 2>;
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ XXXX add flash parts, rtc, ??
		i2c@80003000 {
			#address-cells = <1>;
			#size-cells = <0>;
			device_type = "i2c";
			cell-index = <0>;
			compatible = "fsl-i2c";
			reg = <80003000 1000>;
			interrupts = <5 2>;
+4 −2
Original line number Diff line number Diff line
@@ -284,7 +284,8 @@
		};

		i2c@3d00 {
			device_type = "i2c";
			#address-cells = <1>;
			#size-cells = <0>;
			compatible = "mpc5200-i2c","fsl-i2c";
			cell-index = <0>;
			reg = <3d00 40>;
@@ -294,7 +295,8 @@
		};

		i2c@3d40 {
			device_type = "i2c";
			#address-cells = <1>;
			#size-cells = <0>;
			compatible = "mpc5200-i2c","fsl-i2c";
			cell-index = <1>;
			reg = <3d40 40>;
+4 −2
Original line number Diff line number Diff line
@@ -300,7 +300,8 @@
		};

		i2c@3d00 {
			device_type = "i2c";
			#address-cells = <1>;
			#size-cells = <0>;
			compatible = "mpc5200b-i2c","mpc5200-i2c","fsl-i2c";
			cell-index = <0>;
			reg = <3d00 40>;
@@ -310,7 +311,8 @@
		};

		i2c@3d40 {
			device_type = "i2c";
			#address-cells = <1>;
			#size-cells = <0>;
			compatible = "mpc5200b-i2c","mpc5200-i2c","fsl-i2c";
			cell-index = <1>;
			reg = <3d40 40>;
+6 −2
Original line number Diff line number Diff line
@@ -52,7 +52,9 @@
		};

		i2c@3000 {
			device_type = "i2c";
			#address-cells = <1>;
			#size-cells = <0>;
			cell-index = <0>;
			compatible = "fsl-i2c";
			reg = <3000 100>;
			interrupts = <e 8>;
@@ -61,7 +63,9 @@
		};

		i2c@3100 {
			device_type = "i2c";
			#address-cells = <1>;
			#size-cells = <0>;
			cell-index = <1>;
			compatible = "fsl-i2c";
			reg = <3100 100>;
			interrupts = <f 8>;
Loading