diff options
author | stefano babic <sbabic@denx.de> | 2007-08-30 22:57:04 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-09-07 01:04:59 +0200 |
commit | 80172c6181c912fbb34ea3ba0c22b232b419b47f (patch) | |
tree | ee7f99ac65e1ba7aaed9ce8ad20b72c72c6f28f7 /lib_arm | |
parent | 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e (diff) |
PXA270: Add support for multiple serial ports.
This patch adds support for multiple serial ports to the PXA target.
FFUART, BTUART and STUART are supported.
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'lib_arm')
-rw-r--r-- | lib_arm/board.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c index d37e5dab352..d28afc52f9f 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -314,6 +314,10 @@ void start_armboot (void) drv_vfd_init(); #endif /* CONFIG_VFD */ +#ifdef CONFIG_SERIAL_MULTI + serial_initialize(); +#endif + /* IP Address */ gd->bd->bi_ip_addr = getenv_IPaddr ("ipaddr"); |