aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c24xx/mach-s3c2416-dt.c
diff options
context:
space:
mode:
authorHeiko Stuebner <heiko@sntech.de>2013-06-18 13:40:18 -0400
committerKukjin Kim <kgene.kim@samsung.com>2013-06-18 13:40:18 -0400
commit52c76e44f1b8e63474b9ef5455f657c13e983e95 (patch)
tree4e947bf502694fdeb0b9a7a153bc1b0abc3764e5 /arch/arm/mach-s3c24xx/mach-s3c2416-dt.c
parent35aca36450e6c3fb3b3fe9ea60a7c4689a219a87 (diff)
ARM: S3C24XX: update uart addresses in s3c2416-dt auxdata
Commit 9ee51f01eee8 (tty: serial/samsung: make register definitions global) removed the S3C2410_PA_UARTX defines that the newly merged s3c2416 dt support still expected. So update mach-s3c2416-dt.c to use the S3C24XX_PA_UART constant until we have support for the common clock framework the the s3c2416-dt. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s3c24xx/mach-s3c2416-dt.c')
-rw-r--r--arch/arm/mach-s3c24xx/mach-s3c2416-dt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-s3c24xx/mach-s3c2416-dt.c b/arch/arm/mach-s3c24xx/mach-s3c2416-dt.c
index f5c9072e1e35..f50454a34f72 100644
--- a/arch/arm/mach-s3c24xx/mach-s3c2416-dt.c
+++ b/arch/arm/mach-s3c24xx/mach-s3c2416-dt.c
@@ -43,13 +43,13 @@
43 * data from the device tree. 43 * data from the device tree.
44 */ 44 */
45static const struct of_dev_auxdata s3c2416_auxdata_lookup[] __initconst = { 45static const struct of_dev_auxdata s3c2416_auxdata_lookup[] __initconst = {
46 OF_DEV_AUXDATA("samsung,s3c2440-uart", S3C2410_PA_UART0, 46 OF_DEV_AUXDATA("samsung,s3c2440-uart", S3C24XX_PA_UART,
47 "s3c2440-uart.0", NULL), 47 "s3c2440-uart.0", NULL),
48 OF_DEV_AUXDATA("samsung,s3c2440-uart", S3C2410_PA_UART1, 48 OF_DEV_AUXDATA("samsung,s3c2440-uart", S3C24XX_PA_UART + 0x4000,
49 "s3c2440-uart.1", NULL), 49 "s3c2440-uart.1", NULL),
50 OF_DEV_AUXDATA("samsung,s3c2440-uart", S3C2410_PA_UART2, 50 OF_DEV_AUXDATA("samsung,s3c2440-uart", S3C24XX_PA_UART + 0x8000,
51 "s3c2440-uart.2", NULL), 51 "s3c2440-uart.2", NULL),
52 OF_DEV_AUXDATA("samsung,s3c2440-uart", S3C2443_PA_UART3, 52 OF_DEV_AUXDATA("samsung,s3c2440-uart", S3C24XX_PA_UART + 0xC000,
53 "s3c2440-uart.3", NULL), 53 "s3c2440-uart.3", NULL),
54 OF_DEV_AUXDATA("samsung,s3c6410-sdhci", S3C_PA_HSMMC0, 54 OF_DEV_AUXDATA("samsung,s3c6410-sdhci", S3C_PA_HSMMC0,
55 "s3c-sdhci.0", NULL), 55 "s3c-sdhci.0", NULL),