diff options
author | Timur Tabi <timur@freescale.com> | 2007-03-12 16:40:27 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-03-26 18:05:22 -0400 |
commit | 7d776cb596994219584257eb5956b87628e5deaf (patch) | |
tree | f76a04f0e6e0ba69a744fb96ee7ea3296b412230 /arch/powerpc/sysdev/qe_lib | |
parent | 9eb90a0c3b333e27db74412833a36da3f27da6a3 (diff) |
[POWERPC] QE: automatically select QE options
Change the Kconfig files so that the Freescale QE options are automatically
selected if a QE device is selected. Previously, you'd need to manually
select UCC_FAST if you want any "fast" UCC devices, such as Gigabit Ethernet.
Now, the QE Gigabit Ethernet option is always available if the device has a
QE, and UCC_FAST is automatically enabled. A side-effect is that the
"QE Options" menu no longer exists.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev/qe_lib')
-rw-r--r-- | arch/powerpc/sysdev/qe_lib/Kconfig | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/arch/powerpc/sysdev/qe_lib/Kconfig b/arch/powerpc/sysdev/qe_lib/Kconfig index a725e80befa8..887739f3badc 100644 --- a/arch/powerpc/sysdev/qe_lib/Kconfig +++ b/arch/powerpc/sysdev/qe_lib/Kconfig | |||
@@ -2,11 +2,8 @@ | |||
2 | # QE Communication options | 2 | # QE Communication options |
3 | # | 3 | # |
4 | 4 | ||
5 | menu "QE Options" | ||
6 | depends on QUICC_ENGINE | ||
7 | |||
8 | config UCC_SLOW | 5 | config UCC_SLOW |
9 | bool "UCC Slow Protocols Support" | 6 | bool |
10 | default n | 7 | default n |
11 | select UCC | 8 | select UCC |
12 | help | 9 | help |
@@ -14,10 +11,9 @@ config UCC_SLOW | |||
14 | protocols: UART, BISYNC, QMC | 11 | protocols: UART, BISYNC, QMC |
15 | 12 | ||
16 | config UCC_FAST | 13 | config UCC_FAST |
17 | bool "UCC Fast Protocols Support" | 14 | bool |
18 | default n | 15 | default n |
19 | select UCC | 16 | select UCC |
20 | select UCC_SLOW | ||
21 | help | 17 | help |
22 | This option provides qe_lib support to UCC fast | 18 | This option provides qe_lib support to UCC fast |
23 | protocols: HDLC, Ethernet, ATM, transparent | 19 | protocols: HDLC, Ethernet, ATM, transparent |
@@ -26,5 +22,3 @@ config UCC | |||
26 | bool | 22 | bool |
27 | default y if UCC_FAST || UCC_SLOW | 23 | default y if UCC_FAST || UCC_SLOW |
28 | 24 | ||
29 | endmenu | ||
30 | |||