diff options
author | Atul Dahiya <atul.dahiya@samsung.com> | 2010-07-20 07:08:49 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2010-08-05 05:32:51 -0400 |
commit | 16f4efe7bf6cae180f72618ccc4027afee78123a (patch) | |
tree | 176d526b309756634abb4afe823d6342ae8771d1 /drivers/rtc/Kconfig | |
parent | 9bbf4a634a30c2b289fa119dd3193fbb5f444c70 (diff) |
rtc: rtc-s3c: Add extra option to include RTC for Samsung SoCs
This patch adds HAVE_S3C_RTC to control inclusion of RTC driver for Samsung
SoCs. This option will help to include the driver only for the necessary
machines and not for any given arch.
Signed-off-by: Atul Dahiya <atul.dahiya@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'drivers/rtc/Kconfig')
-rw-r--r-- | drivers/rtc/Kconfig | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig index 10ba12c8c5e0..c43732ff1800 100644 --- a/drivers/rtc/Kconfig +++ b/drivers/rtc/Kconfig | |||
@@ -645,9 +645,16 @@ config RTC_DRV_OMAP | |||
645 | DA8xx/OMAP-L13x chips. This driver can also be built as a | 645 | DA8xx/OMAP-L13x chips. This driver can also be built as a |
646 | module called rtc-omap. | 646 | module called rtc-omap. |
647 | 647 | ||
648 | config HAVE_S3C_RTC | ||
649 | bool | ||
650 | help | ||
651 | This will include RTC support for Samsung SoCs. If | ||
652 | you want to include RTC support for any machine, kindly | ||
653 | select this in the respective mach-XXXX/Kconfig file. | ||
654 | |||
648 | config RTC_DRV_S3C | 655 | config RTC_DRV_S3C |
649 | tristate "Samsung S3C series SoC RTC" | 656 | tristate "Samsung S3C series SoC RTC" |
650 | depends on ARCH_S3C2410 || ARCH_S3C64XX | 657 | depends on ARCH_S3C2410 || ARCH_S3C64XX || HAVE_S3C_RTC |
651 | help | 658 | help |
652 | RTC (Realtime Clock) driver for the clock inbuilt into the | 659 | RTC (Realtime Clock) driver for the clock inbuilt into the |
653 | Samsung S3C24XX series of SoCs. This can provide periodic | 660 | Samsung S3C24XX series of SoCs. This can provide periodic |