From: Lad Prabhakar Date: Mon, 21 Sep 2020 17:24:09 +0000 (+0100) Subject: usb: xhci-rcar: Add support for R8A774A1 SoC X-Git-Tag: v2021.10~497^2~3^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e15e817f3eb13dd4b58f465b009164ecd8b997cf;p=platform%2Fkernel%2Fu-boot.git usb: xhci-rcar: Add support for R8A774A1 SoC The R8A774A1 is compatible with the generic rcar-gen3-xhci controller. This patch adds the compatibility flag, to support the xHCI controller. Signed-off-by: Lad Prabhakar Reviewed-by: Biju Das --- diff --git a/drivers/usb/host/xhci-rcar.c b/drivers/usb/host/xhci-rcar.c index 8fc51df..5379dba 100644 --- a/drivers/usb/host/xhci-rcar.c +++ b/drivers/usb/host/xhci-rcar.c @@ -146,6 +146,7 @@ static int xhci_rcar_ofdata_to_platdata(struct udevice *dev) } static const struct udevice_id xhci_rcar_ids[] = { + { .compatible = "renesas,rcar-gen3-xhci" }, { .compatible = "renesas,xhci-r8a7795" }, { .compatible = "renesas,xhci-r8a7796" }, { .compatible = "renesas,xhci-r8a77965" },