From b00922ee48987ef91f0ca2aa3a66ad22c6c83d57 Mon Sep 17 00:00:00 2001 Message-Id: In-Reply-To: <24b77460dbfa2497ceb7a1611bf28b6eb88a1d74.1645627172.git.stefan@agner.ch> References: <24b77460dbfa2497ceb7a1611bf28b6eb88a1d74.1645627172.git.stefan@agner.ch> From: Stefan Agner Date: Thu, 7 Oct 2021 12:02:39 +0200 Subject: [PATCH 5/5] usb: xhci-brcm: Make driver compatible with downstream device tree The downstream device tree uses just "generic-xhci" as compatible string. Use this string to make U-Boot work with the downstream Kernel. Signed-off-by: Stefan Agner --- drivers/usb/host/xhci-brcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/host/xhci-brcm.c b/drivers/usb/host/xhci-brcm.c index fe17924028..0c6938187b 100644 --- a/drivers/usb/host/xhci-brcm.c +++ b/drivers/usb/host/xhci-brcm.c @@ -82,7 +82,7 @@ static int xhci_brcm_deregister(struct udevice *dev) } static const struct udevice_id xhci_brcm_ids[] = { - { .compatible = "brcm,generic-xhci" }, + { .compatible = "generic-xhci" }, { } }; -- 2.35.1