From david-b@pacbell.net Fri May 4 11:39:45 2007 From: Stefan Roese Date: Fri, 4 May 2007 11:39:37 -0700 Subject: USB: Set CONFIG_USB_EHCI_BIG_ENDIAN_MMIO/_DESC in usb/host/Kconfig To: Greg KH Message-ID: <200705041139.38087.david-b@pacbell.net> Content-Disposition: inline From: Stefan Roese Now select the big-endian configuration options CONFIG_USB_EHCI_BIG_ENDIAN_MMIO and CONFIG_USB_EHCI_BIG_ENDIAN_DESC in the usb host Kconfig file and not in the platform Kconfig files. Signed-off-by: Stefan Roese Signed-off-by: David Brownell Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/Kconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig @@ -69,13 +69,13 @@ config USB_EHCI_TT_NEWSCHED config USB_EHCI_BIG_ENDIAN_MMIO bool - depends on USB_EHCI_HCD - default n + depends on USB_EHCI_HCD && (PPC_CELLEB || PPC_PS3 || 440EPX) + default y config USB_EHCI_BIG_ENDIAN_DESC bool - depends on USB_EHCI_HCD - default n + depends on USB_EHCI_HCD && 440EPX + default y config USB_ISP116X_HCD tristate "ISP116X HCD support"