diff options
| author | Florian Eckert | 2024-07-31 06:34:41 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-08-31 17:28:04 +0000 |
| commit | 378272f0a42508b225ff79bb5b8c2fc3635000ed (patch) | |
| tree | 74ca1f5cc9e788df56e2c02ebf308d9e478c7325 | |
| parent | c6f04f718ec89561f2261f2388857baa126eaa50 (diff) | |
| download | openwrt-378272f0a42508b225ff79bb5b8c2fc3635000ed.tar.gz | |
kernel: modules: usb: remove deprecated Kconfig option CONFIG_USB_XHCI_HCD_DEBUGGING
The Kconfig option 'CONFIG_USB_XHCI_HCD_DEBUGGING' has been removed with the
following commit upstream in the Linux kernel.
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=b2497509df002e9a09c8550cd0ecd2f77c9640d8
This Kconfig option is therefore no longer valid for the kernel version
6.6 and could be removed.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
| -rw-r--r-- | package/kernel/linux/modules/usb.mk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/package/kernel/linux/modules/usb.mk b/package/kernel/linux/modules/usb.mk index 12725f10ee..b003737834 100644 --- a/package/kernel/linux/modules/usb.mk +++ b/package/kernel/linux/modules/usb.mk @@ -1846,9 +1846,7 @@ $(eval $(call KernelPackage,usb-roles)) define KernelPackage/usb-xhci-hcd TITLE:=xHCI HCD (USB 3.0) support - KCONFIG:= \ - CONFIG_USB_XHCI_HCD \ - CONFIG_USB_XHCI_HCD_DEBUGGING=n + KCONFIG:= CONFIG_USB_XHCI_HCD HIDDEN:=1 FILES:=$(LINUX_DIR)/drivers/usb/host/xhci-hcd.ko AUTOLOAD:=$(call AutoLoad,54,xhci-hcd,1) |