diff options
author | Chunfeng Yun <chunfeng.yun@mediatek.com> | 2025-01-16 20:51:41 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-01-17 12:38:59 +0100 |
commit | eb124822186be8ea433f568e92cc3bfbf6117a30 (patch) | |
tree | 3aa4b9dcfde82ea61b976b06bc5fc3885dca611c | |
parent | 06c47f203222c93dbec85950d976637aedd54514 (diff) | |
download | lwn-eb124822186be8ea433f568e92cc3bfbf6117a30.tar.gz lwn-eb124822186be8ea433f568e92cc3bfbf6117a30.zip |
usb: host: xhci-plat: add support compatible ID PNP0D15
Add support compatible ID PNP0D15 which declare that the xHCI
controller doesn't support standard debug capability.
Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Link: https://lore.kernel.org/r/20250116125141.25856-1-chunfeng.yun@mediatek.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/host/xhci-plat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c index e88814c5743b..d85ffa9ffaa7 100644 --- a/drivers/usb/host/xhci-plat.c +++ b/drivers/usb/host/xhci-plat.c @@ -569,6 +569,7 @@ EXPORT_SYMBOL_GPL(xhci_plat_pm_ops); static const struct acpi_device_id usb_xhci_acpi_match[] = { /* XHCI-compliant USB Controller */ { "PNP0D10", }, + { "PNP0D15", }, { } }; MODULE_DEVICE_TABLE(acpi, usb_xhci_acpi_match); |