The UHCI driver currently gives a build error if the base driver is enabled but none of the three bus glues are turned on:
drivers/usb/host/uhci-hcd.c:857:2: error: #error "missing bus glue for uhci-hcd" A better solution for this is to change the Kconfig statements to prevent getting into this situation. This adds a new USB_UHCI_CORE symbol in Kconfig, which is selected by each of the three bus glues. This way, the driver never gets built if all three of them are disabled. Cc: Alan Stern <st...@rowland.harvard.edu> Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org> Signed-off-by: Arnd Bergmann <a...@arndb.de> --- drivers/usb/host/Kconfig | 36 +++++++++++++++++++++++++++--------- drivers/usb/host/Makefile | 2 +- drivers/usb/host/uhci-hcd.c | 4 ++-- 3 files changed, 30 insertions(+), 12 deletions(-) diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index 7b176bc..656af4d 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig @@ -525,28 +525,46 @@ config USB_UHCI_HCD To compile this driver as a module, choose M here: the module will be called uhci-hcd. -config USB_UHCI_SUPPORT_NON_PCI_HC - bool - depends on USB_UHCI_HCD - default y if (SPARC_LEON || ARCH_VT8500) +if USB_UHCI_HCD + +config USB_UHCI_PCI + tristate + default USB_UHCI_HCD + depends on PCI + select USB_UHCI_CORE + +config USB_UHCI_GRLIB + tristate + default USB_UHCI_HCD + depends on SPARC_LEON + select USB_UHCI_CORE + select USB_UHCI_SUPPORT_NON_PCI_HC + select USB_UHCI_BIG_ENDIAN_MMIO + select USB_UHCI_BIG_ENDIAN_DESC config USB_UHCI_PLATFORM bool "Generic UHCI Platform Driver support" - depends on USB_UHCI_SUPPORT_NON_PCI_HC default y if ARCH_VT8500 + select USB_UHCI_SUPPORT_NON_PCI_HC + select USB_UHCI_CORE ---help--- Enable support for generic UHCI platform devices that require no additional configuration. +config USB_UHCI_CORE + tristate + depends on USB_UHCI_HCD + +config USB_UHCI_SUPPORT_NON_PCI_HC + bool + config USB_UHCI_BIG_ENDIAN_MMIO bool - depends on USB_UHCI_SUPPORT_NON_PCI_HC && SPARC_LEON - default y config USB_UHCI_BIG_ENDIAN_DESC bool - depends on USB_UHCI_SUPPORT_NON_PCI_HC && SPARC_LEON - default y + +endif config USB_FHCI_HCD tristate "Freescale QE USB Host Controller support" diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Makefile index 4fb73c1..1441d42 100644 --- a/drivers/usb/host/Makefile +++ b/drivers/usb/host/Makefile @@ -38,7 +38,7 @@ obj-$(CONFIG_USB_OXU210HP_HCD) += oxu210hp-hcd.o obj-$(CONFIG_USB_ISP116X_HCD) += isp116x-hcd.o obj-$(CONFIG_USB_ISP1362_HCD) += isp1362-hcd.o obj-$(CONFIG_USB_OHCI_HCD) += ohci-hcd.o -obj-$(CONFIG_USB_UHCI_HCD) += uhci-hcd.o +obj-$(CONFIG_USB_UHCI_CORE) += uhci-hcd.o obj-$(CONFIG_USB_FHCI_HCD) += fhci.o obj-$(CONFIG_USB_XHCI_HCD) += xhci-hcd.o obj-$(CONFIG_USB_SL811_HCD) += sl811-hcd.o diff --git a/drivers/usb/host/uhci-hcd.c b/drivers/usb/host/uhci-hcd.c index 4a86b63..612b792 100644 --- a/drivers/usb/host/uhci-hcd.c +++ b/drivers/usb/host/uhci-hcd.c @@ -838,12 +838,12 @@ static int uhci_count_ports(struct usb_hcd *hcd) static const char hcd_name[] = "uhci_hcd"; -#ifdef CONFIG_PCI +#ifdef CONFIG_USB_UHCI_PCI #include "uhci-pci.c" #define PCI_DRIVER uhci_pci_driver #endif -#ifdef CONFIG_SPARC_LEON +#ifdef CONFIG_USB_UHCI_GRLIB #include "uhci-grlib.c" #define PLATFORM_DRIVER uhci_grlib_driver #endif -- 1.8.1.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/