34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From b00922ee48987ef91f0ca2aa3a66ad22c6c83d57 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <b00922ee48987ef91f0ca2aa3a66ad22c6c83d57.1654086219.git.stefan@agner.ch>
|
|
In-Reply-To: <24b77460dbfa2497ceb7a1611bf28b6eb88a1d74.1654086219.git.stefan@agner.ch>
|
|
References: <24b77460dbfa2497ceb7a1611bf28b6eb88a1d74.1654086219.git.stefan@agner.ch>
|
|
From: Stefan Agner <stefan@agner.ch>
|
|
Date: Thu, 7 Oct 2021 12:02:39 +0200
|
|
Subject: [PATCH] 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 <stefan@agner.ch>
|
|
---
|
|
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.36.1
|
|
|