mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 17:12:55 +00:00
acf6cec836
the PPC_MPC512x config automatically selected USB_EHCI_BIG_ENDIAN_* switches, which made Kconfig warn about "unmet direct dependencies": scripts/kconfig/conf --silentoldconfig Kconfig warning: (PPC_MPC512x && 440EPX) selects USB_EHCI_BIG_ENDIAN_DESC which has unmet direct dependencies (USB_SUPPORT && USB && USB_EHCI_HCD) warning: (PPC_MPC512x && PPC_PS3 && PPC_CELLEB && 440EPX) selects USB_EHCI_BIG_ENDIAN_MMIO which has unmet direct dependencies (USB_SUPPORT && USB && USB_EHCI_HCD) warning: (PPC_MPC512x && 440EPX) selects USB_EHCI_BIG_ENDIAN_DESC which has unmet direct dependencies (USB_SUPPORT && USB && USB_EHCI_HCD) warning: (PPC_MPC512x && PPC_PS3 && PPC_CELLEB && 440EPX) selects USB_EHCI_BIG_ENDIAN_MMIO which has unmet direct dependencies (USB_SUPPORT && USB && USB_EHCI_HCD) make the selected entries additionally depend on USB_EHCI_HCD which silences the warning Signed-off-by: Gerhard Sittig <gsi@denx.de> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
37 lines
965 B
Plaintext
37 lines
965 B
Plaintext
config PPC_MPC512x
|
|
bool "512x-based boards"
|
|
depends on 6xx
|
|
select COMMON_CLK
|
|
select FSL_SOC
|
|
select IPIC
|
|
select PPC_PCI_CHOICE
|
|
select FSL_PCI if PCI
|
|
select ARCH_WANT_OPTIONAL_GPIOLIB
|
|
select USB_EHCI_BIG_ENDIAN_MMIO if USB_EHCI_HCD
|
|
select USB_EHCI_BIG_ENDIAN_DESC if USB_EHCI_HCD
|
|
|
|
config MPC5121_ADS
|
|
bool "Freescale MPC5121E ADS"
|
|
depends on PPC_MPC512x
|
|
select DEFAULT_UIMAGE
|
|
help
|
|
This option enables support for the MPC5121E ADS board.
|
|
|
|
config MPC512x_GENERIC
|
|
bool "Generic support for simple MPC512x based boards"
|
|
depends on PPC_MPC512x
|
|
select DEFAULT_UIMAGE
|
|
help
|
|
This option enables support for simple MPC512x based boards
|
|
which do not need custom platform specific setup.
|
|
|
|
Compatible boards include: Protonic LVT base boards (ZANMCU
|
|
and VICVT2), Freescale MPC5125 Tower system.
|
|
|
|
config PDM360NG
|
|
bool "ifm PDM360NG board"
|
|
depends on PPC_MPC512x
|
|
select DEFAULT_UIMAGE
|
|
help
|
|
This option enables support for the PDM360NG board.
|