From: Philipp Tomsich Date: Tue, 12 Sep 2017 15:32:28 +0000 (+0200) Subject: usb: host: ehci-generic: convert to livetree X-Git-Tag: v2017.11-rc1~33^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6e652e3a7d15b896fd82b717c6eca74b70a33b7a;p=u-boot usb: host: ehci-generic: convert to livetree Update the generic EHCI driver to support a live tree. Signed-off-by: Philipp Tomsich --- diff --git a/drivers/usb/host/ehci-generic.c b/drivers/usb/host/ehci-generic.c index 03f8d321af..18e1e0ee88 100644 --- a/drivers/usb/host/ehci-generic.c +++ b/drivers/usb/host/ehci-generic.c @@ -108,7 +108,7 @@ static int ehci_usb_probe(struct udevice *dev) } } - hccr = map_physmem(devfdt_get_addr(dev), 0x100, MAP_NOCACHE); + hccr = map_physmem(dev_read_addr(dev), 0x100, MAP_NOCACHE); hcor = (struct ehci_hcor *)((uintptr_t)hccr + HC_LENGTH(ehci_readl(&hccr->cr_capbase)));