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
|
@ -118,12 +118,6 @@
|
|||
label = "SPI_3";
|
||||
};
|
||||
|
||||
otgfs_phy: otgfs_phy {
|
||||
compatible = "usb-nop-xceiv";
|
||||
#phy-cells = <0>;
|
||||
label = "OTGFS_PHY";
|
||||
};
|
||||
|
||||
usbotg_fs: otgfs@50000000 {
|
||||
compatible = "st,stm32-otgfs";
|
||||
reg = <0x50000000 0x40000>;
|
||||
|
@ -137,4 +131,10 @@
|
|||
label= "OTGFS";
|
||||
};
|
||||
};
|
||||
|
||||
otgfs_phy: otgfs_phy {
|
||||
compatible = "usb-nop-xceiv";
|
||||
#phy-cells = <0>;
|
||||
label = "OTGFS_PHY";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue