From mboxrd@z Thu Jan 1 00:00:00 1970 From: andrew.smirnov@gmail.com (Andrey Smirnov) Date: Wed, 27 Jun 2018 21:37:12 -0700 Subject: [PATCH 1/2] ARM: dts: imx51-babbage: Fix reg for usbh1phy Message-ID: <20180628043713.14425-1-andrew.smirnov@gmail.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org There's already a USB PHY with reg of zero on that bus - usbphy0, used by usbotg (included from imx51.dtsi). Move usbh1phy to @1 avoid address collision. Cc: Fabio Estevam Cc: Shawn Guo Cc: linux-arm-kernel at lists.infradead.org Cc: linux-kernel at vger.kernel.org Signed-off-by: Andrey Smirnov --- arch/arm/boot/dts/imx51-babbage.dts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/imx51-babbage.dts b/arch/arm/boot/dts/imx51-babbage.dts index b8ca73d3d379..541c6e67ad1a 100644 --- a/arch/arm/boot/dts/imx51-babbage.dts +++ b/arch/arm/boot/dts/imx51-babbage.dts @@ -175,9 +175,9 @@ #size-cells = <0>; compatible = "simple-bus"; - usbh1phy: usbh1phy at 0 { + usbh1phy: usbh1phy at 1 { compatible = "usb-nop-xceiv"; - reg = <0>; + reg = <1>; clocks = <&clk_usb>; clock-names = "main_clk"; reset-gpios = <&gpio2 5 GPIO_ACTIVE_LOW>; -- 2.17.1