diff options
author | Arnd Bergmann <arnd@arndb.de> | 2012-01-09 11:14:07 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2012-01-09 11:14:07 -0500 |
commit | 142f2101a86ade2d6c9dfbedf82e1b5b31c8fce6 (patch) | |
tree | 8cced517382b7087df4e89a9e2a00ccac9676a92 /arch/arm/mach-s5p64x0/mach-smdk6450.c | |
parent | 155bc27fdfbdf65a07a4f8ef3eafa25e57d8b511 (diff) | |
parent | a07613a54d700a974f3a4a657da78ef5d097315d (diff) |
Merge branch 'samsung/cleanup' into samsung/driver
Conflicts:
arch/arm/mach-s5p64x0/cpu.c -> common.c
More changes to a file that got moved into common.c,
see previous conflict resolutions.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-s5p64x0/mach-smdk6450.c')
-rw-r--r-- | arch/arm/mach-s5p64x0/mach-smdk6450.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/arm/mach-s5p64x0/mach-smdk6450.c b/arch/arm/mach-s5p64x0/mach-smdk6450.c index 242a415dcf6b..efb69e2f2afe 100644 --- a/arch/arm/mach-s5p64x0/mach-smdk6450.c +++ b/arch/arm/mach-s5p64x0/mach-smdk6450.c | |||
@@ -28,6 +28,7 @@ | |||
28 | 28 | ||
29 | #include <video/platform_lcd.h> | 29 | #include <video/platform_lcd.h> |
30 | 30 | ||
31 | #include <asm/hardware/vic.h> | ||
31 | #include <asm/mach/arch.h> | 32 | #include <asm/mach/arch.h> |
32 | #include <asm/mach/map.h> | 33 | #include <asm/mach/map.h> |
33 | #include <asm/irq.h> | 34 | #include <asm/irq.h> |
@@ -41,7 +42,6 @@ | |||
41 | 42 | ||
42 | #include <plat/regs-serial.h> | 43 | #include <plat/regs-serial.h> |
43 | #include <plat/gpio-cfg.h> | 44 | #include <plat/gpio-cfg.h> |
44 | #include <plat/s5p6450.h> | ||
45 | #include <plat/clock.h> | 45 | #include <plat/clock.h> |
46 | #include <plat/devs.h> | 46 | #include <plat/devs.h> |
47 | #include <plat/cpu.h> | 47 | #include <plat/cpu.h> |
@@ -55,6 +55,8 @@ | |||
55 | #include <plat/regs-fb.h> | 55 | #include <plat/regs-fb.h> |
56 | #include <plat/sdhci.h> | 56 | #include <plat/sdhci.h> |
57 | 57 | ||
58 | #include "common.h" | ||
59 | |||
58 | #define SMDK6450_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \ | 60 | #define SMDK6450_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \ |
59 | S3C2410_UCON_RXILEVEL | \ | 61 | S3C2410_UCON_RXILEVEL | \ |
60 | S3C2410_UCON_TXIRQMODE | \ | 62 | S3C2410_UCON_TXIRQMODE | \ |
@@ -241,7 +243,7 @@ static struct platform_pwm_backlight_data smdk6450_bl_data = { | |||
241 | 243 | ||
242 | static void __init smdk6450_map_io(void) | 244 | static void __init smdk6450_map_io(void) |
243 | { | 245 | { |
244 | s5p_init_io(NULL, 0, S5P64X0_SYS_ID); | 246 | s5p64x0_init_io(NULL, 0); |
245 | s3c24xx_init_clocks(19200000); | 247 | s3c24xx_init_clocks(19200000); |
246 | s3c24xx_init_uarts(smdk6450_uartcfgs, ARRAY_SIZE(smdk6450_uartcfgs)); | 248 | s3c24xx_init_uarts(smdk6450_uartcfgs, ARRAY_SIZE(smdk6450_uartcfgs)); |
247 | s5p_set_timer_source(S5P_PWM3, S5P_PWM4); | 249 | s5p_set_timer_source(S5P_PWM3, S5P_PWM4); |
@@ -286,7 +288,9 @@ MACHINE_START(SMDK6450, "SMDK6450") | |||
286 | .atag_offset = 0x100, | 288 | .atag_offset = 0x100, |
287 | 289 | ||
288 | .init_irq = s5p6450_init_irq, | 290 | .init_irq = s5p6450_init_irq, |
291 | .handle_irq = vic_handle_irq, | ||
289 | .map_io = smdk6450_map_io, | 292 | .map_io = smdk6450_map_io, |
290 | .init_machine = smdk6450_machine_init, | 293 | .init_machine = smdk6450_machine_init, |
291 | .timer = &s5p_timer, | 294 | .timer = &s5p_timer, |
295 | .restart = s5p64x0_restart, | ||
292 | MACHINE_END | 296 | MACHINE_END |