diff options
author | Marco Franchi <marco.franchi@nxp.com> | 2017-10-20 17:48:24 +0200 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2017-10-23 02:29:09 +0200 |
commit | 9598babc80d5bfa474f9c17124f8bd178dd6ceec (patch) | |
tree | eee4980d319779c104e04d45214f7ae89cc07dd0 /arch/arm/boot | |
parent | ARM: dts: imx51-ts4800: Fix 'port@0' node with unit name and no reg property (diff) | |
download | linux-9598babc80d5bfa474f9c17124f8bd178dd6ceec.tar.xz linux-9598babc80d5bfa474f9c17124f8bd178dd6ceec.zip |
ARM: dts: imx53: Fix 'usbphy@x' node with unit name and no reg property
The following build warnings are seen with W=1:
Warning (unit_address_vs_reg): Node /soc/aips@50000000/usbphy@0 has a unit name, but no reg property
Warning (unit_address_vs_reg): Node /soc/aips@50000000/usbphy@1 has a unit name, but no reg property
Fix these warnings by changing '@' to '-'.
Signed-off-by: Marco Franchi <marco.franchi@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r-- | arch/arm/boot/dts/imx53.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/imx53.dtsi b/arch/arm/boot/dts/imx53.dtsi index 8bf0d89cdd35..c93794958eb9 100644 --- a/arch/arm/boot/dts/imx53.dtsi +++ b/arch/arm/boot/dts/imx53.dtsi @@ -299,14 +299,14 @@ reg = <0x53f00000 0x60>; }; - usbphy0: usbphy@0 { + usbphy0: usbphy-0 { compatible = "usb-nop-xceiv"; clocks = <&clks IMX5_CLK_USB_PHY1_GATE>; clock-names = "main_clk"; status = "okay"; }; - usbphy1: usbphy@1 { + usbphy1: usbphy-1 { compatible = "usb-nop-xceiv"; clocks = <&clks IMX5_CLK_USB_PHY2_GATE>; clock-names = "main_clk"; |