diff options
author | Marian Balakowicz <m8@semihalf.com> | 2006-06-30 18:19:42 +0200 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2006-06-30 18:19:42 +0200 |
commit | f6e5739a68131998a5ae8aa0cf56a0316f810200 (patch) | |
tree | 010b89799af2478323c7f1cc04665b51b5cc4e50 /common/serial.c | |
parent | f73e73ba0e422e6f79030d77286dd57becaee16f (diff) | |
parent | 6c5879f380be38d85fef0d3aba3353358f4b2ff4 (diff) |
Merge: Add support for AMCC 440SPe CPU based eval board (Yucca).
Diffstat (limited to 'common/serial.c')
-rw-r--r-- | common/serial.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/common/serial.c b/common/serial.c index 7b299517084..38057d21f6c 100644 --- a/common/serial.c +++ b/common/serial.c @@ -42,7 +42,11 @@ struct serial_device *default_serial_console (void) return &serial_scc_device; #elif defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) \ || defined(CONFIG_405EP) || defined(CONFIG_MPC5xxx) - return &serial0_device; +#if defined(CONFIG_UART1_CONSOLE) + return &serial1_device; +#else + return &serial0_device; +#endif #else #error No default console #endif |