diff options
| author | Marian Balakowicz <m8@semihalf.com> | 2006-06-30 16:30:46 +0200 | 
|---|---|---|
| committer | Marian Balakowicz <m8@semihalf.com> | 2006-06-30 16:30:46 +0200 | 
| commit | 6c5879f380be38d85fef0d3aba3353358f4b2ff4 (patch) | |
| tree | 32b48cff57dafc910c7b0dfdd6c5b99109c21e46 /common/serial.c | |
| parent | bb105f24cc90ec4c56ea13012acc3d763b2a2984 (diff) | |
| download | olio-uboot-2014.01-6c5879f380be38d85fef0d3aba3353358f4b2ff4.tar.xz olio-uboot-2014.01-6c5879f380be38d85fef0d3aba3353358f4b2ff4.zip | |
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 22d8fd058..d725a3cdb 100644 --- a/common/serial.c +++ b/common/serial.c @@ -40,7 +40,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) -	return &serial0_device; +#if defined(CONFIG_UART1_CONSOLE) +		return &serial1_device; +#else +		return &serial0_device; +#endif  #else  #error No default console  #endif |