* 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
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 @@
 
 /* $(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);