diff options
author | Harald Welte <laforge@openmoko.org> | 2007-12-19 14:24:40 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-02-04 23:52:49 +0100 |
commit | a7c185ed3d9f8ebd85cfc286e1ffee72e4803163 (patch) | |
tree | 61205b4a6ec89087b4aabd962891e34712be91a4 /include | |
parent | a25f72f1f73a11de68251fb88c89991e202e68fa (diff) | |
download | u-boot-imx-a7c185ed3d9f8ebd85cfc286e1ffee72e4803163.zip u-boot-imx-a7c185ed3d9f8ebd85cfc286e1ffee72e4803163.tar.gz u-boot-imx-a7c185ed3d9f8ebd85cfc286e1ffee72e4803163.tar.bz2 |
ARM: s3c24xx: Multiple serial port support
This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
Signed-off-by: Harald Welte <laforge@openmoko.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/serial.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/serial.h b/include/serial.h index e292f0c..2b99e53 100644 --- a/include/serial.h +++ b/include/serial.h @@ -36,6 +36,11 @@ extern struct serial_device eserial4_device; #endif +#if defined(CONFIG_S3C2410) +extern struct serial_device s3c24xx_serial0_device; +extern struct serial_device s3c24xx_serial1_device; +extern struct serial_device s3c24xx_serial2_device; +#endif extern struct serial_device serial_ffuart_device; extern struct serial_device serial_btuart_device; |