From: Emmanuel Vadot Date: Mon, 2 Jul 2018 12:34:23 +0000 (+0200) Subject: usb: dwc2: Add brcm,bcm2708-usb compatible X-Git-Tag: v2018.07~3^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff5d5cc2331033c8a6987bb644827b52484160d9;p=platform%2Fkernel%2Fu-boot.git 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 Signed-off-by: Emmanuel Vadot --- diff --git a/drivers/usb/host/dwc2.c b/drivers/usb/host/dwc2.c index dd95611..cbe065b 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" }, { } };