diff options
author | wdenk <wdenk> | 2005-04-03 15:51:42 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-04-03 15:51:42 +0000 |
commit | 756f586a73d756f163dc03a049d650cc1a5b5899 (patch) | |
tree | 15cd902e173aa72118ee90622ffe5492d7243b70 /include/common.h | |
parent | b1bf6f2c9b4aa17c6ccb7a631c99fae7f4b5744b (diff) | |
download | u-boot-imx-756f586a73d756f163dc03a049d650cc1a5b5899.zip u-boot-imx-756f586a73d756f163dc03a049d650cc1a5b5899.tar.gz u-boot-imx-756f586a73d756f163dc03a049d650cc1a5b5899.tar.bz2 |
* Patch by Yusdi Santoso, 22 Oct 2004:
- Add support for HIDDEN_DRAGON board
- fix endianess problem in driver/rtl1839.c
* Patch by Allen Curtis, 21 Oct 2004:
support multiple serial ports
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index f0b82e5..eee79b2 100644 --- a/include/common.h +++ b/include/common.h @@ -386,13 +386,21 @@ ulong get_tbclk (void); /* $(CPU)/serial.c */ int serial_init (void); +void serial_addr (unsigned int); void serial_setbrg (void); void serial_putc (const char); +void serial_putc_raw(const char); void serial_puts (const char *); -void serial_addr (unsigned int); int serial_getc (void); int serial_tstc (void); +void _serial_setbrg (const int); +void _serial_putc (const char, const int); +void _serial_putc_raw(const char, const int); +void _serial_puts (const char *, const int); +int _serial_getc (const int); +int _serial_tstc (const int); + /* $(CPU)/speed.c */ int get_clocks (void); int get_clocks_866 (void); |