diff options
author | Marek Vasut <marex@denx.de> | 2015-08-12 22:19:14 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-08-19 22:31:39 +0200 |
commit | f522f9475f86c27bc0dd8733d029833a3845d725 (patch) | |
tree | c3d05f293bea7870c982521708459af5b725fb35 | |
parent | 5df131521194a9ae361930089fb340d712c54eee (diff) | |
download | u-boot-imx-f522f9475f86c27bc0dd8733d029833a3845d725.zip u-boot-imx-f522f9475f86c27bc0dd8733d029833a3845d725.tar.gz u-boot-imx-f522f9475f86c27bc0dd8733d029833a3845d725.tar.bz2 |
usb: dwc2: Add original Synopsys compat string
Add the Synopsys compatible string. This is used in SoCFPGA DT files.
Signed-off-by: Marek Vasut <marex@denx.de>
-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 09f91f1..7b29134 100644 --- a/drivers/usb/host/dwc2.c +++ b/drivers/usb/host/dwc2.c @@ -1113,6 +1113,7 @@ struct dm_usb_ops dwc2_usb_ops = { static const struct udevice_id dwc2_usb_ids[] = { { .compatible = "brcm,bcm2835-usb" }, + { .compatible = "snps,dwc2" }, { } }; |