diff options
author | Steffen Trumtrar <s.trumtrar@pengutronix.de> | 2016-01-04 18:04:35 +0100 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2016-03-14 17:08:10 +0100 |
commit | 68298c2dac96c75ed6950f059bbb1368c21da2a3 (patch) | |
tree | 499dd8e10006ebf0f5d6a954834ff10996eb4b42 /drivers/rtc/Makefile | |
parent | cfe941628a04b572b0dba7a20fd4570edad74c81 (diff) | |
download | op-kernel-dev-68298c2dac96c75ed6950f059bbb1368c21da2a3.zip op-kernel-dev-68298c2dac96c75ed6950f059bbb1368c21da2a3.tar.gz |
rtc: add driver for RX6110SA real time clock
The RX6110 comes in two different variants: SPI and I2C.
This driver only supports the SPI variant.
If the need ever arises to also support the I2C variant, this driver
could easily be refactored to support both cases.
Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/rtc/Makefile')
-rw-r--r-- | drivers/rtc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile index ed4519e..c8a2147 100644 --- a/drivers/rtc/Makefile +++ b/drivers/rtc/Makefile @@ -127,6 +127,7 @@ obj-$(CONFIG_RTC_DRV_RS5C372) += rtc-rs5c372.o obj-$(CONFIG_RTC_DRV_RV3029C2) += rtc-rv3029c2.o obj-$(CONFIG_RTC_DRV_RV8803) += rtc-rv8803.o obj-$(CONFIG_RTC_DRV_RX4581) += rtc-rx4581.o +obj-$(CONFIG_RTC_DRV_RX6110) += rtc-rx6110.o obj-$(CONFIG_RTC_DRV_RX8010) += rtc-rx8010.o obj-$(CONFIG_RTC_DRV_RX8025) += rtc-rx8025.o obj-$(CONFIG_RTC_DRV_RX8581) += rtc-rx8581.o |