Merge branch 'v3.4-samsung-fixes-5' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung into fixes

* 'v3.4-samsung-fixes-5' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung:
ARM: EXYNOS: fix ctrlbit for exynos5_clk_pdma1
ARM: EXYNOS: use s5p-timer for UniversalC210 board

Changed files
+7 -2
arch
+3
arch/arm/mach-exynos/Kconfig
··· 232 232 config MACH_UNIVERSAL_C210 233 233 bool "Mobile UNIVERSAL_C210 Board" 234 234 select CPU_EXYNOS4210 235 + select S5P_HRT 236 + select CLKSRC_MMIO 237 + select HAVE_SCHED_CLOCK 235 238 select S5P_GPIO_INT 236 239 select S5P_DEV_FIMC0 237 240 select S5P_DEV_FIMC1
+1 -1
arch/arm/mach-exynos/clock-exynos5.c
··· 678 678 .name = "dma", 679 679 .devname = "dma-pl330.1", 680 680 .enable = exynos5_clk_ip_fsys_ctrl, 681 - .ctrlbit = (1 << 1), 681 + .ctrlbit = (1 << 2), 682 682 }; 683 683 684 684 static struct clk exynos5_clk_mdma1 = {
+3 -1
arch/arm/mach-exynos/mach-universal_c210.c
··· 40 40 #include <plat/pd.h> 41 41 #include <plat/regs-fb-v4.h> 42 42 #include <plat/fimc-core.h> 43 + #include <plat/s5p-time.h> 43 44 #include <plat/camport.h> 44 45 #include <plat/mipi_csis.h> 45 46 ··· 1064 1063 exynos_init_io(NULL, 0); 1065 1064 s3c24xx_init_clocks(24000000); 1066 1065 s3c24xx_init_uarts(universal_uartcfgs, ARRAY_SIZE(universal_uartcfgs)); 1066 + s5p_set_timer_source(S5P_PWM2, S5P_PWM4); 1067 1067 } 1068 1068 1069 1069 static void s5p_tv_setup(void) ··· 1115 1113 .map_io = universal_map_io, 1116 1114 .handle_irq = gic_handle_irq, 1117 1115 .init_machine = universal_machine_init, 1118 - .timer = &exynos4_timer, 1116 + .timer = &s5p_timer, 1119 1117 .reserve = &universal_reserve, 1120 1118 .restart = exynos4_restart, 1121 1119 MACHINE_END