Commit 94d83649e1c2f25c87dc4ead9c2ab073305 "USB: remove USB_EHCI_BIG_ENDIAN_{DESC,MMIO} depends on architecture symbol" caused the following regression in cavium_octeon_defconfig: warning: (MIPS_SEAD3 && PMC_MSP && CPU_CAVIUM_OCTEON) selects USB_EHCI_BIG_ENDIAN_MMIO which has unmet direct dependencies (USB_SUPPORT && USB && USB_EHCI_HCD) We fix this problem by selecting the USB_EHCI_HCD missing dependency if USB_SUPPORT is enabled. Signed-off-by: Markos Chandras <markos.chandras@xxxxxxxxxx> Acked-by: Steven J. Hill <Steven.Hill@xxxxxxxxxx> --- This patch is for the upstream-sfr/mips-for-linux-next --- arch/mips/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 87ddac9..a058ba8 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -1411,6 +1411,7 @@ config CPU_CAVIUM_OCTEON select CPU_SUPPORTS_HUGEPAGES select LIBFDT select USE_OF + select USB_EHCI_HCD if USB_SUPPORT select USB_EHCI_BIG_ENDIAN_MMIO help The Cavium Octeon processor is a highly integrated chip containing -- 1.8.2.1