Commit f568f6f5 authored by Rob Herring's avatar Rob Herring Committed by Tony Lindgren
Browse files

ARM: dts: omap: 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 OMAP dts files:

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

Signed-off-by: default avatarRob Herring <robh@kernel.org>
Cc: "Benoît Cousson" <bcousson@baylibre.com>
Cc: Tony Lindgren <tony@atomide.com>
Cc: Enric Balletbo i Serra <eballetbo@gmail.com>
Cc: Javier Martinez Canillas <javier@dowhile0.org>
Cc: linux-omap@vger.kernel.org
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 1ff516a4
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -33,6 +33,7 @@
	hsusb2_phy: hsusb2_phy {
	hsusb2_phy: hsusb2_phy {
		compatible = "usb-nop-xceiv";
		compatible = "usb-nop-xceiv";
		reset-gpios = <&gpio1 4 GPIO_ACTIVE_LOW>; /* gpio_4 */
		reset-gpios = <&gpio1 4 GPIO_ACTIVE_LOW>; /* gpio_4 */
		#phy-cells = <0>;
	};
	};
};
};


+1 −0
Original line number Original line Diff line number Diff line
@@ -90,6 +90,7 @@
		compatible = "usb-nop-xceiv";
		compatible = "usb-nop-xceiv";
		reset-gpios = <&gpio5 19 GPIO_ACTIVE_LOW>; /* gpio_147 */
		reset-gpios = <&gpio5 19 GPIO_ACTIVE_LOW>; /* gpio_147 */
		vcc-supply = <&hsusb2_power>;
		vcc-supply = <&hsusb2_power>;
		#phy-cells = <0>;
	};
	};


	tfp410: encoder0 {
	tfp410: encoder0 {
+1 −0
Original line number Original line Diff line number Diff line
@@ -64,6 +64,7 @@
		compatible = "usb-nop-xceiv";
		compatible = "usb-nop-xceiv";
		reset-gpios = <&gpio5 19 GPIO_ACTIVE_LOW>;	/* gpio_147 */
		reset-gpios = <&gpio5 19 GPIO_ACTIVE_LOW>;	/* gpio_147 */
		vcc-supply = <&hsusb2_power>;
		vcc-supply = <&hsusb2_power>;
		#phy-cells = <0>;
	};
	};


	sound {
	sound {
+2 −0
Original line number Original line Diff line number Diff line
@@ -42,12 +42,14 @@
	hsusb1_phy: hsusb1_phy {
	hsusb1_phy: hsusb1_phy {
		compatible = "usb-nop-xceiv";
		compatible = "usb-nop-xceiv";
		vcc-supply = <&hsusb1_power>;
		vcc-supply = <&hsusb1_power>;
		#phy-cells = <0>;
	};
	};


	/* HS USB Host PHY on PORT 2 */
	/* HS USB Host PHY on PORT 2 */
	hsusb2_phy: hsusb2_phy {
	hsusb2_phy: hsusb2_phy {
		compatible = "usb-nop-xceiv";
		compatible = "usb-nop-xceiv";
		vcc-supply = <&hsusb2_power>;
		vcc-supply = <&hsusb2_power>;
		#phy-cells = <0>;
	};
	};


	ads7846reg: ads7846-reg {
	ads7846reg: ads7846-reg {
+1 −0
Original line number Original line Diff line number Diff line
@@ -28,6 +28,7 @@
		compatible = "usb-nop-xceiv";
		compatible = "usb-nop-xceiv";
		reset-gpios = <&gpio1 21 GPIO_ACTIVE_LOW>; /* gpio_21 */
		reset-gpios = <&gpio1 21 GPIO_ACTIVE_LOW>; /* gpio_21 */
		vcc-supply = <&hsusb2_power>;
		vcc-supply = <&hsusb2_power>;
		#phy-cells = <0>;
	};
	};


	leds {
	leds {
Loading