diff options
author | Timur Tabi <timur@freescale.com> | 2007-05-23 16:23:55 +0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-05-23 16:23:55 +0400 |
commit | 90c615bc42886f23a6112733a949d0f6fbe343b6 (patch) | |
tree | 4600ab7e71cb4c2d02b908b809d3480f99794f94 /arch/powerpc | |
parent | f2fb9eb3482c9ab3cca84cf0c80f646ce9aeb4de (diff) | |
download | linux-90c615bc42886f23a6112733a949d0f6fbe343b6.tar.xz |
[POWERPC] QE: fix Kconfig 'select' warning with UCC_FAST
The UCC_GETH Kconfig option in drivers/net/Kconfig had a line to select the
UCC_FAST option is arch/powerpc/sysdev/qe_lib/Kconfig, which is only used
on PowerPC builds. On other architectures, this would generated a warning.
The fix is to have UCC_FAST depend on UCC_GETH.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/sysdev/qe_lib/Kconfig | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/powerpc/sysdev/qe_lib/Kconfig b/arch/powerpc/sysdev/qe_lib/Kconfig index 887739f3badc..f611d344a126 100644 --- a/arch/powerpc/sysdev/qe_lib/Kconfig +++ b/arch/powerpc/sysdev/qe_lib/Kconfig @@ -5,15 +5,13 @@ config UCC_SLOW bool default n - select UCC help This option provides qe_lib support to UCC slow protocols: UART, BISYNC, QMC config UCC_FAST bool - default n - select UCC + default y if UCC_GETH help This option provides qe_lib support to UCC fast protocols: HDLC, Ethernet, ATM, transparent |