summaryrefslogtreecommitdiff
path: root/drivers/usb
diff options
context:
space:
mode:
authorMichael Walle <michael@walle.cc>2021-10-13 19:14:21 +0300
committerPriyanka Jain <priyanka.jain@nxp.com>2021-11-09 14:48:23 +0300
commit8f176eb8acdb7d2712b5f96bb946751b26a898db (patch)
tree648bbd9231492eb131d20e2e6e1c8ec6b9a7a290 /drivers/usb
parentcde9b147ba2f0325d9edeb26b995e65c317e7792 (diff)
downloadu-boot-8f176eb8acdb7d2712b5f96bb946751b26a898db.tar.xz
usb: xhci: fsl: add new compatible fsl,ls1028a-dwc3
The official ls1028a binding of the driver uses the following as compatibles: compatible = "fsl,ls1028a-dwc3", "snps,dwc3"; Change the ls1028a device tree and add this new compatible to the fsl specific xhci driver, otherwise the generic dwc3 driver will be used with the compatibles above. Cc: Bin Meng <bmeng.cn@gmail.com> Cc: Marek Vasut <marex@denx.de> Signed-off-by: Michael Walle <michael@walle.cc> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/host/xhci-fsl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci-fsl.c b/drivers/usb/host/xhci-fsl.c
index f062f12ade..80871908dc 100644
--- a/drivers/usb/host/xhci-fsl.c
+++ b/drivers/usb/host/xhci-fsl.c
@@ -159,6 +159,7 @@ static int xhci_fsl_remove(struct udevice *dev)
static const struct udevice_id xhci_usb_ids[] = {
{ .compatible = "fsl,layerscape-dwc3", },
+ { .compatible = "fsl,ls1028a-dwc3", },
{ }
};