diff options
author | James Hogan <jhogan@kernel.org> | 2017-11-08 09:21:15 +0000 |
---|---|---|
committer | James Hogan <jhogan@kernel.org> | 2017-11-08 10:23:36 +0000 |
commit | b2ec33d438cca839fbb5764bcf5e29cffb3b9721 (patch) | |
tree | a3a99cb69f7e1807d111ef287bcc8a0fe1b1e667 | |
parent | 56a46acf62af5ba44fca2f3f1c7c25a2d5385b19 (diff) |
MIPS: ralink: Drop obsolete USB_ARCH_HAS_HCD select
Building an allnoconfig kernel based on the ralink platform results in
the following warning:
warning: (SOC_RT305X) selects USB_ARCH_HAS_HCD which has unmet direct dependencies (USB_SUPPORT)
This is because SOC_RT305X unconditionally selects USB_ARCH_HAS_HCD
which depends on USB_SUPPORT.
However USB_ARCH_HAS_HCD has been effectively obsolete since commit
d9ea21a77927 ("usb: host: make USB_ARCH_HAS_?HCI obsolete") in 3.11.
USB_ARCH_HAS_HCD is now set by default whenever USB_SUPPORT is, so drop
the select to silence the warning.
Signed-off-by: James Hogan <jhogan@kernel.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: John Crispin <john@phrozen.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/17618/
-rw-r--r-- | arch/mips/ralink/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/mips/ralink/Kconfig b/arch/mips/ralink/Kconfig index b4627080b828..05587e0e16e3 100644 --- a/arch/mips/ralink/Kconfig +++ b/arch/mips/ralink/Kconfig @@ -30,7 +30,6 @@ choice config SOC_RT305X bool "RT305x" - select USB_ARCH_HAS_HCD config SOC_RT3883 bool "RT3883" |