diff options
| author | Arnd Bergmann <arnd@arndb.de> | 2013-05-06 23:43:45 +0200 | 
|---|---|---|
| committer | Arnd Bergmann <arnd@arndb.de> | 2013-05-06 23:43:45 +0200 | 
| commit | 442a33ebce9e02a2dd6662f16c9f2aad834d0115 (patch) | |
| tree | ca8654a286f61da917318645cab9e061095ecdba /arch/arm/mach-s3c24xx/mach-nexcoder.c | |
| parent | a94d236dc355f374857ee4e6e78b7dec8a0f29e3 (diff) | |
| parent | f31c2f1c68aff83277eddc6798adf3438e9c680a (diff) | |
| download | olio-linux-3.10-442a33ebce9e02a2dd6662f16c9f2aad834d0115.tar.xz olio-linux-3.10-442a33ebce9e02a2dd6662f16c9f2aad834d0115.zip  | |
Merge branch 'late/clksrc' into late/cleanup
There is no reason to keep the clksrc cleanups separate from the
other cleanups, and this resolves some merge conflicts.
Conflicts:
	arch/arm/mach-spear/spear13xx.c
	drivers/irqchip/Makefile
Diffstat (limited to 'arch/arm/mach-s3c24xx/mach-nexcoder.c')
| -rw-r--r-- | arch/arm/mach-s3c24xx/mach-nexcoder.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-s3c24xx/mach-nexcoder.c b/arch/arm/mach-s3c24xx/mach-nexcoder.c index a454e246186..01f4354206f 100644 --- a/arch/arm/mach-s3c24xx/mach-nexcoder.c +++ b/arch/arm/mach-s3c24xx/mach-nexcoder.c @@ -41,11 +41,10 @@  #include <linux/platform_data/i2c-s3c2410.h>  #include <plat/gpio-cfg.h> -#include <plat/s3c2410.h> -#include <plat/s3c244x.h>  #include <plat/clock.h>  #include <plat/devs.h>  #include <plat/cpu.h> +#include <plat/samsung-time.h>  #include "common.h" @@ -137,6 +136,7 @@ static void __init nexcoder_map_io(void)  	s3c24xx_init_io(nexcoder_iodesc, ARRAY_SIZE(nexcoder_iodesc));  	s3c24xx_init_clocks(0);  	s3c24xx_init_uarts(nexcoder_uartcfgs, ARRAY_SIZE(nexcoder_uartcfgs)); +	samsung_set_timer_source(SAMSUNG_PWM3, SAMSUNG_PWM4);  	nexcoder_sensorboard_init();  } @@ -152,7 +152,7 @@ MACHINE_START(NEXCODER_2440, "NexVision - Nexcoder 2440")  	.atag_offset	= 0x100,  	.map_io		= nexcoder_map_io,  	.init_machine	= nexcoder_init, -	.init_irq	= s3c24xx_init_irq, -	.init_time	= s3c24xx_timer_init, +	.init_irq	= s3c2440_init_irq, +	.init_time	= samsung_timer_init,  	.restart	= s3c244x_restart,  MACHINE_END  |