diff options
| author | Stefan Roese <sr@denx.de> | 2007-03-24 15:45:34 +0100 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2007-03-24 15:45:34 +0100 | 
| commit | 3cb86f3e40d2a80356177434a99f75bc8baa9caf (patch) | |
| tree | 0086e4cf102f4ca0ed4d9c1516fb962d204de6eb /common/serial.c | |
| parent | 16c0cc1c82081a493ab87c51980b28336ce1bce8 (diff) | |
| download | olio-uboot-2014.01-3cb86f3e40d2a80356177434a99f75bc8baa9caf.tar.xz olio-uboot-2014.01-3cb86f3e40d2a80356177434a99f75bc8baa9caf.zip | |
[PATCH] Clean up 40EZ/Acadia support
This patch cleans up all the open issue of the preliminary
Acadia support.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'common/serial.c')
| -rw-r--r-- | common/serial.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/serial.c b/common/serial.c index 605d4e34b..13e9f30e4 100644 --- a/common/serial.c +++ b/common/serial.c @@ -41,7 +41,7 @@ struct serial_device *default_serial_console (void)     || defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)  	return &serial_scc_device;  #elif defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) \ -   || defined(CONFIG_405EP) || defined(CONFIG_MPC5xxx) +   || defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_MPC5xxx)  #if defined(CONFIG_CONS_INDEX) && defined(CFG_NS16550_SERIAL)  #if (CONFIG_CONS_INDEX==1)  	return &eserial1_device; @@ -91,7 +91,7 @@ void serial_initialize (void)  #endif  #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) \ - || defined(CONFIG_405EP) || defined(CONFIG_MPC5xxx) + || defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_MPC5xxx)  	serial_register(&serial0_device);  	serial_register(&serial1_device);  #endif |