usb: ehci: ehci-marvell: Update compatible string to official DT bindings
Official DT bindings use compatible string marvell,armada-3700-ehci. Update drivers and DTS files. Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
9bc68546bb
commit
af6d0938f3
@ -234,7 +234,7 @@
|
||||
};
|
||||
|
||||
usb2: usb@5e000 {
|
||||
compatible = "marvell,armada3700-ehci";
|
||||
compatible = "marvell,armada-3700-ehci";
|
||||
reg = <0x5e000 0x450>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
@ -937,7 +937,7 @@ void comphy_dedicated_phys_init(void)
|
||||
*/
|
||||
if (usb32 == 0) {
|
||||
node = fdt_node_offset_by_compatible(
|
||||
blob, -1, "marvell,armada3700-ehci");
|
||||
blob, -1, "marvell,armada-3700-ehci");
|
||||
} else {
|
||||
node = fdt_node_offset_by_compatible(
|
||||
blob, -1, "marvell,armada3700-xhci");
|
||||
|
@ -123,7 +123,7 @@ static int ehci_mvebu_probe(struct udevice *dev)
|
||||
* Also, the address decoder doesn't need to get setup with this
|
||||
* SoC, so don't call usb_brg_adrdec_setup().
|
||||
*/
|
||||
if (device_is_compatible(dev, "marvell,armada3700-ehci"))
|
||||
if (device_is_compatible(dev, "marvell,armada-3700-ehci"))
|
||||
marvell_ehci_ops.powerup_fixup = marvell_ehci_powerup_fixup;
|
||||
else
|
||||
usb_brg_adrdec_setup((void *)priv->hcd_base);
|
||||
@ -142,7 +142,7 @@ static int ehci_mvebu_probe(struct udevice *dev)
|
||||
|
||||
static const struct udevice_id ehci_usb_ids[] = {
|
||||
{ .compatible = "marvell,orion-ehci", },
|
||||
{ .compatible = "marvell,armada3700-ehci", },
|
||||
{ .compatible = "marvell,armada-3700-ehci", },
|
||||
{ }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user