diff options
| author | Stefan Roese <sr@denx.de> | 2010-09-21 10:24:36 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2010-09-23 09:02:05 +0200 | 
| commit | e3c78c9b3c6a984934f98d3d622618edaa149fbd (patch) | |
| tree | 289a153d11f6156810326b03c68ade54393ebdd4 /common/serial.c | |
| parent | 550650ddd0fde00f245bc3da72d7272844198394 (diff) | |
| download | olio-uboot-2014.01-e3c78c9b3c6a984934f98d3d622618edaa149fbd.tar.xz olio-uboot-2014.01-e3c78c9b3c6a984934f98d3d622618edaa149fbd.zip | |
ppc4xx: Remove now unused CONFIG_UART1_CONSOLE
CONFIG_UART1_CONSOLE was a PPC4xx specific implementation and is now
removed since the move from the 4xx UART driver to the common NS16550
UART driver. Let's remove all references to this define now.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'common/serial.c')
| -rw-r--r-- | common/serial.c | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/common/serial.c b/common/serial.c index dbc74bd58..25b235aa1 100644 --- a/common/serial.c +++ b/common/serial.c @@ -54,10 +54,7 @@ struct serial_device *__default_serial_console (void)  #else  #error "Bad CONFIG_CONS_INDEX."  #endif -#elif defined(CONFIG_UART1_CONSOLE) -		return &serial1_device; -#else -		return &serial0_device; +	return &serial0_device;  #endif  #elif defined(CONFIG_MPC512X)  #if (CONFIG_PSC_CONSOLE == 3) |