diff options
author | Minkyu Kang <mk7.kang@samsung.com> | 2010-03-24 16:59:30 +0900 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2010-03-26 13:56:59 +0900 |
commit | 0f1f21a345e02a68ec16f7ab9e7dc687f9276089 (patch) | |
tree | 586c95f2522b6da4d8a4a0e644afe6304c336e92 /include | |
parent | 8677f127d68e9fa0c7a7af39f737c4231a98ab09 (diff) | |
download | u-boot-imx-0f1f21a345e02a68ec16f7ab9e7dc687f9276089.zip u-boot-imx-0f1f21a345e02a68ec16f7ab9e7dc687f9276089.tar.gz u-boot-imx-0f1f21a345e02a68ec16f7ab9e7dc687f9276089.tar.bz2 |
SAMSUNG: serial: modify name from s5pc1xx to s5p
Because of other s5p series SoC will use these serial functions,
modify function's name and structure's name.
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/arch-s5pc1xx/uart.h | 2 | ||||
-rw-r--r-- | include/serial.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/include/asm-arm/arch-s5pc1xx/uart.h b/include/asm-arm/arch-s5pc1xx/uart.h index 140dbdc..2d7ad7e 100644 --- a/include/asm-arm/arch-s5pc1xx/uart.h +++ b/include/asm-arm/arch-s5pc1xx/uart.h @@ -24,7 +24,7 @@ #define __ASM_ARCH_UART_H_ #ifndef __ASSEMBLY__ -struct s5pc1xx_uart { +struct s5p_uart { unsigned int ulcon; unsigned int ucon; unsigned int ufcon; diff --git a/include/serial.h b/include/serial.h index f2638ec..4caf790 100644 --- a/include/serial.h +++ b/include/serial.h @@ -44,10 +44,10 @@ extern struct serial_device s3c24xx_serial2_device; #endif #if defined(CONFIG_S5PC1XX) -extern struct serial_device s5pc1xx_serial0_device; -extern struct serial_device s5pc1xx_serial1_device; -extern struct serial_device s5pc1xx_serial2_device; -extern struct serial_device s5pc1xx_serial3_device; +extern struct serial_device s5p_serial0_device; +extern struct serial_device s5p_serial1_device; +extern struct serial_device s5p_serial2_device; +extern struct serial_device s5p_serial3_device; #endif #if defined(CONFIG_OMAP3_ZOOM2) |