diff options
author | Ben Dooks <ben-linux@fluff.org> | 2009-08-14 10:24:01 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-08-14 10:24:01 -0400 |
commit | c378aa275e1476218a6b438056a4cd48eb1eca0f (patch) | |
tree | 48d19b078758cbab638aeb8ab2978be05232290b /arch/arm/mach-s3c6410 | |
parent | 215ed3236a17b748cf75a2c23f50028c95302a42 (diff) | |
parent | c7c8f615c8d1b49225ed86406603e7ac24d2a6d9 (diff) |
Merge branch 'next-s3c64xx' into next-s3c
Diffstat (limited to 'arch/arm/mach-s3c6410')
-rw-r--r-- | arch/arm/mach-s3c6410/mach-ncp.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-s3c6410/mach-smdk6410.c | 26 |
2 files changed, 21 insertions, 7 deletions
diff --git a/arch/arm/mach-s3c6410/mach-ncp.c b/arch/arm/mach-s3c6410/mach-ncp.c index 6030636f8548..55e9bbfaf68b 100644 --- a/arch/arm/mach-s3c6410/mach-ncp.c +++ b/arch/arm/mach-s3c6410/mach-ncp.c | |||
@@ -79,7 +79,7 @@ static struct platform_device *ncp_devices[] __initdata = { | |||
79 | &s3c_device_i2c0, | 79 | &s3c_device_i2c0, |
80 | }; | 80 | }; |
81 | 81 | ||
82 | struct map_desc ncp_iodesc[] = {}; | 82 | static struct map_desc ncp_iodesc[] __initdata = {}; |
83 | 83 | ||
84 | static void __init ncp_map_io(void) | 84 | static void __init ncp_map_io(void) |
85 | { | 85 | { |
diff --git a/arch/arm/mach-s3c6410/mach-smdk6410.c b/arch/arm/mach-s3c6410/mach-smdk6410.c index bc9a7dea567f..ea51dbe76e3e 100644 --- a/arch/arm/mach-s3c6410/mach-smdk6410.c +++ b/arch/arm/mach-s3c6410/mach-smdk6410.c | |||
@@ -65,16 +65,30 @@ static struct s3c2410_uartcfg smdk6410_uartcfgs[] __initdata = { | |||
65 | [0] = { | 65 | [0] = { |
66 | .hwport = 0, | 66 | .hwport = 0, |
67 | .flags = 0, | 67 | .flags = 0, |
68 | .ucon = 0x3c5, | 68 | .ucon = UCON, |
69 | .ulcon = 0x03, | 69 | .ulcon = ULCON, |
70 | .ufcon = 0x51, | 70 | .ufcon = UFCON, |
71 | }, | 71 | }, |
72 | [1] = { | 72 | [1] = { |
73 | .hwport = 1, | 73 | .hwport = 1, |
74 | .flags = 0, | 74 | .flags = 0, |
75 | .ucon = 0x3c5, | 75 | .ucon = UCON, |
76 | .ulcon = 0x03, | 76 | .ulcon = ULCON, |
77 | .ufcon = 0x51, | 77 | .ufcon = UFCON, |
78 | }, | ||
79 | [2] = { | ||
80 | .hwport = 2, | ||
81 | .flags = 0, | ||
82 | .ucon = UCON, | ||
83 | .ulcon = ULCON, | ||
84 | .ufcon = UFCON, | ||
85 | }, | ||
86 | [3] = { | ||
87 | .hwport = 3, | ||
88 | .flags = 0, | ||
89 | .ucon = UCON, | ||
90 | .ulcon = ULCON, | ||
91 | .ufcon = UFCON, | ||
78 | }, | 92 | }, |
79 | }; | 93 | }; |
80 | 94 | ||