diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2011-09-22 15:28:35 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-10-17 04:03:03 -0400 |
commit | 164acf96a979deae3cf04f8eebcc66567fb8a520 (patch) | |
tree | df0d1c69bb8c7cbf22ebaea34f41d9a3b30437ef /arch/arm/Kconfig.debug | |
parent | 4f5ef9226afab7c9920f1e6c560f046f6aaba89c (diff) |
ARM: 7096/1: debug: Add UART1 config choices
ARM patch 7072/1 (debug: use kconfig choice for selecting
DEBUG_LL UART) didn't notice that the Kconfigs relied on being
unselected to configure a different serial port. Since there is
no NONE option in a choice menu, explicitly add the other option
so that both serial ports can be selected.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Acked-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/Kconfig.debug')
-rw-r--r-- | arch/arm/Kconfig.debug | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/arch/arm/Kconfig.debug b/arch/arm/Kconfig.debug index 60d184677955..6dbcb0068b47 100644 --- a/arch/arm/Kconfig.debug +++ b/arch/arm/Kconfig.debug | |||
@@ -81,14 +81,27 @@ choice | |||
81 | prompt "Kernel low-level debugging port" | 81 | prompt "Kernel low-level debugging port" |
82 | depends on DEBUG_LL | 82 | depends on DEBUG_LL |
83 | 83 | ||
84 | |||
85 | config DEBUG_FOOTBRIDGE_COM1 | ||
86 | bool "Kernel low-level debugging messages via footbridge 8250 at PCI COM1" | ||
87 | depends on FOOTBRIDGE | ||
88 | help | ||
89 | Say Y here if you want the debug print routines to direct | ||
90 | their output to the 8250 at PCI COM1. | ||
91 | |||
84 | config DEBUG_DC21285_PORT | 92 | config DEBUG_DC21285_PORT |
85 | bool "Kernel low-level debugging messages via footbridge serial port" | 93 | bool "Kernel low-level debugging messages via footbridge serial port" |
86 | depends on FOOTBRIDGE | 94 | depends on FOOTBRIDGE |
87 | help | 95 | help |
88 | Say Y here if you want the debug print routines to direct | 96 | Say Y here if you want the debug print routines to direct |
89 | their output to the serial port in the DC21285 (Footbridge). | 97 | their output to the serial port in the DC21285 (Footbridge). |
90 | Saying N will cause the debug messages to appear on the first | 98 | |
91 | 16550 serial port. | 99 | config DEBUG_CLPS711X_UART1 |
100 | bool "Kernel low-level debugging messages via UART1" | ||
101 | depends on ARCH_CLPS711X | ||
102 | help | ||
103 | Say Y here if you want the debug print routines to direct | ||
104 | their output to the first serial port on these devices. | ||
92 | 105 | ||
93 | config DEBUG_CLPS711X_UART2 | 106 | config DEBUG_CLPS711X_UART2 |
94 | bool "Kernel low-level debugging messages via UART2" | 107 | bool "Kernel low-level debugging messages via UART2" |
@@ -96,8 +109,6 @@ choice | |||
96 | help | 109 | help |
97 | Say Y here if you want the debug print routines to direct | 110 | Say Y here if you want the debug print routines to direct |
98 | their output to the second serial port on these devices. | 111 | their output to the second serial port on these devices. |
99 | Saying N will cause the debug messages to appear on the first | ||
100 | serial port. | ||
101 | 112 | ||
102 | endchoice | 113 | endchoice |
103 | 114 | ||