Skip to content

Commit 5bccae6

Browse files
cornustorvalds
authored andcommitted
rtc: s5m-rtc: add real-time clock driver for s5m8767
Add real-time clock driver for s5m8767. Signed-off-by: Sangbeom Kim <[email protected]> Signed-off-by: Sachin Kamat <[email protected]> Cc: Todd Broch <[email protected]> Cc: Mark Brown <[email protected]> Acked-by: Lee Jones <[email protected]> [mfd parts] Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 5e0d121 commit 5bccae6

File tree

5 files changed

+658
-0
lines changed

5 files changed

+658
-0
lines changed

drivers/rtc/Kconfig

+10
Original file line numberDiff line numberDiff line change
@@ -497,6 +497,16 @@ config RTC_DRV_RV3029C2
497497
This driver can also be built as a module. If so, the module
498498
will be called rtc-rv3029c2.
499499

500+
config RTC_DRV_S5M
501+
tristate "Samsung S5M series"
502+
depends on MFD_SEC_CORE
503+
help
504+
If you say yes here you will get support for the
505+
RTC of Samsung S5M PMIC series.
506+
507+
This driver can also be built as a module. If so, the module
508+
will be called rtc-s5m.
509+
500510
endif # I2C
501511

502512
comment "SPI RTC drivers"

drivers/rtc/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ obj-$(CONFIG_RTC_DRV_RX8025) += rtc-rx8025.o
107107
obj-$(CONFIG_RTC_DRV_RX8581) += rtc-rx8581.o
108108
obj-$(CONFIG_RTC_DRV_S35390A) += rtc-s35390a.o
109109
obj-$(CONFIG_RTC_DRV_S3C) += rtc-s3c.o
110+
obj-$(CONFIG_RTC_DRV_S5M) += rtc-s5m.o
110111
obj-$(CONFIG_RTC_DRV_SA1100) += rtc-sa1100.o
111112
obj-$(CONFIG_RTC_DRV_SH) += rtc-sh.o
112113
obj-$(CONFIG_RTC_DRV_SNVS) += rtc-snvs.o

0 commit comments

Comments
 (0)