dts: stm32: Move usb PHY nodes out of SoC to fix warning
We currently get a number of warnings like: Warning (simple_bus_reg): /soc/otgfs_phy: missing or empty reg/ranges property This is due to the usb phy nodes not have a reg property since they don't have an mmio address associated with them. Move the phy nodes out of the SoC node so their lack of a reg property will not cause a warning. This is similar to how Linux dts files handle the phy nodes. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
32ce21961b
commit
f022de6275
15 changed files with 96 additions and 96 deletions
|
@ -163,12 +163,6 @@
|
|||
};
|
||||
};
|
||||
|
||||
otghs_fs_phy: otghs_fs_phy {
|
||||
compatible = "usb-nop-xceiv";
|
||||
#phy-cells = <0>;
|
||||
label = "OTGHS_FS_PHY";
|
||||
};
|
||||
|
||||
usbotg_hs: usb@40040000 {
|
||||
compatible = "st,stm32-otghs", "st,stm32-otgfs";
|
||||
reg = <0x40040000 0x40000>;
|
||||
|
@ -182,4 +176,10 @@
|
|||
label= "OTGHS";
|
||||
};
|
||||
};
|
||||
|
||||
otghs_fs_phy: otghs_fs_phy {
|
||||
compatible = "usb-nop-xceiv";
|
||||
#phy-cells = <0>;
|
||||
label = "OTGHS_FS_PHY";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue