diff options
author | Emmanuel Vadot <manu@freebsd.org> | 2018-07-02 14:34:23 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2018-07-05 11:25:49 +0200 |
commit | ff5d5cc2331033c8a6987bb644827b52484160d9 (patch) | |
tree | 1a9733c1fbae06706805cc96a2974a08857db79f | |
parent | 4ac5df4b41ba46d7e635bdd8d500721c642b0a0d (diff) | |
download | u-boot-midas-ff5d5cc2331033c8a6987bb644827b52484160d9.tar.gz u-boot-midas-ff5d5cc2331033c8a6987bb644827b52484160d9.tar.bz2 u-boot-midas-ff5d5cc2331033c8a6987bb644827b52484160d9.zip |
usb: dwc2: Add brcm,bcm2708-usb compatible
When using CONFIG_OF_BOARD on rpi to use the dtb provided by the
RaspberryPi Fundation, the compatible string isn't the same, resulting
in not-functional usb from u-boot.
Signed-off-by: Oleksandr Tymoshenko <gonzo@FreeBSD.org>
Signed-off-by: Emmanuel Vadot <manu@freebsd.org>
-rw-r--r-- | drivers/usb/host/dwc2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/dwc2.c b/drivers/usb/host/dwc2.c index dd956110fc..cbe065bbaf 100644 --- a/drivers/usb/host/dwc2.c +++ b/drivers/usb/host/dwc2.c @@ -1314,6 +1314,7 @@ struct dm_usb_ops dwc2_usb_ops = { static const struct udevice_id dwc2_usb_ids[] = { { .compatible = "brcm,bcm2835-usb" }, + { .compatible = "brcm,bcm2708-usb" }, { .compatible = "snps,dwc2" }, { } }; |