rockchip: rk3328: correct usb phy phandle in dts
The phy phandle in usb node should be port instead of phy, or else the phy driver not able to find the ops and abort at generic_phy_get_by_index(). Change-Id: I6aac0c45b882f45136f58062bccd8d1dab79d524 Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
parent
f99f53c229
commit
bd5537509b
|
|
@ -516,7 +516,7 @@
|
|||
compatible = "generic-ehci";
|
||||
reg = <0x0 0xff5c0000 0x0 0x10000>;
|
||||
interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>;
|
||||
phys = <&u2phy 1>;
|
||||
phys = <&u2phy_host>;
|
||||
phy-names = "usb";
|
||||
status = "disabled";
|
||||
};
|
||||
|
|
@ -525,7 +525,7 @@
|
|||
compatible = "generic-ohci";
|
||||
reg = <0x0 0xff5d0000 0x0 0x10000>;
|
||||
interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
|
||||
phys = <&u2phy 1>;
|
||||
phys = <&u2phy_host>;
|
||||
phy-names = "usb";
|
||||
status = "disabled";
|
||||
};
|
||||
|
|
@ -537,7 +537,7 @@
|
|||
interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
|
||||
hnp-srp-disable;
|
||||
dr_mode = "otg";
|
||||
phys = <&u2phy 0>;
|
||||
phys = <&u2phy_otg>;
|
||||
phy-names = "usb";
|
||||
status = "disabled";
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue