diff options
author | Atul Dahiya | 2010-07-21 10:40:59 +0200 |
---|---|---|
committer | Kukjin Kim | 2010-08-05 11:32:51 +0200 |
commit | 03eb2749c21b006456249dfd8b6c24a5081c84c1 (patch) | |
tree | 8cf26ff07e07b28913266f162c40fdeeb705fcfb /arch/arm | |
parent | rtc: rtc-s3c: Add extra option to include RTC for Samsung SoCs (diff) | |
download | kernel-qcow2-linux-03eb2749c21b006456249dfd8b6c24a5081c84c1.tar.gz kernel-qcow2-linux-03eb2749c21b006456249dfd8b6c24a5081c84c1.tar.xz kernel-qcow2-linux-03eb2749c21b006456249dfd8b6c24a5081c84c1.zip |
ARM: SAMSUNG: Make RTC driver dependency SoC specific instead of machine specific
This patch moves the dependency of RTC driver from MACH_XXX(board) to
ARCH_XXX(SoC). This will enable all machines using Samsung S5P6440, S5PC100
and S5PV210 SoCs to use RTC driver by default.
Signed-off-by: Atul Dahiya <atul.dahiya@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 98922f7d2d12..ea668a41b991 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -672,6 +672,7 @@ config ARCH_S5P6440 select GENERIC_GPIO select HAVE_CLK select ARCH_USES_GETTIMEOFFSET + select HAVE_S3C_RTC help Samsung S5P6440 CPU based systems @@ -691,6 +692,7 @@ config ARCH_S5PC100 select CPU_V7 select ARM_L1_CACHE_SHIFT_6 select ARCH_USES_GETTIMEOFFSET + select HAVE_S3C_RTC help Samsung S5PC100 series based systems @@ -701,6 +703,7 @@ config ARCH_S5PV210 select HAVE_CLK select ARM_L1_CACHE_SHIFT_6 select ARCH_USES_GETTIMEOFFSET + select HAVE_S3C_RTC help Samsung S5PV210/S5PC110 series based systems |