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

Commit 915fbe59 authored by Rob Herring's avatar Rob Herring Committed by Shawn Guo
Browse files

ARM: dts: imx: Add missing #phy-cells to usb-nop-xceiv



"usb-nop-xceiv" is using the phy binding, but is missing #phy-cells
property. This is probably because the binding was the precursor to the phy
binding.

Fixes the following warning in i.MX dts files:

Warning (phys_property): Missing property '#phy-cells' in node ...

Signed-off-by: default avatarRob Herring <robh@kernel.org>
Cc: Sascha Hauer <kernel@pengutronix.de>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent cab54cea
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -628,11 +628,13 @@
		usbphy0: usb-phy@0 {
			reg = <0>;
			compatible = "usb-nop-xceiv";
			#phy-cells = <0>;
		};

		usbphy1: usb-phy@1 {
			reg = <1>;
			compatible = "usb-nop-xceiv";
			#phy-cells = <0>;
		};
	};
};
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@
			reg = <0>;
			clocks = <&clks IMX27_CLK_DUMMY>;
			clock-names = "main_clk";
			#phy-cells = <0>;
		};
	};
};
+1 −0
Original line number Diff line number Diff line
@@ -63,6 +63,7 @@
			vcc-supply = <&reg_5v0>;
			clocks = <&clks IMX27_CLK_DUMMY>;
			clock-names = "main_clk";
			#phy-cells = <0>;
		};
	};
};
+1 −0
Original line number Diff line number Diff line
@@ -53,6 +53,7 @@
			vcc-supply = <&sw3_reg>;
			clocks = <&clks IMX27_CLK_DUMMY>;
			clock-names = "main_clk";
			#phy-cells = <0>;
		};
	};
};
+2 −0
Original line number Diff line number Diff line
@@ -402,11 +402,13 @@
		usbphy0: usb-phy@0 {
			reg = <0>;
			compatible = "usb-nop-xceiv";
			#phy-cells = <0>;
		};

		usbphy1: usb-phy@1 {
			reg = <1>;
			compatible = "usb-nop-xceiv";
			#phy-cells = <0>;
		};
	};
};
Loading