]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
RTC: add support for DS1339 (using DS1307 driver)
authorMarkus Niebel <Markus.Niebel@tq-group.com>
Mon, 21 Jul 2014 09:06:16 +0000 (11:06 +0200)
committerAnatolij Gustschin <agust@denx.de>
Thu, 14 Aug 2014 12:45:58 +0000 (14:45 +0200)
Signed-off-by: Markus Niebel <Markus.Niebel@tq-group.com>
README
drivers/rtc/Makefile
drivers/rtc/ds1307.c

diff --git a/README b/README
index 1d713596ec6f006752897a38829a1efd71cb6f09..4fd87949cd7d8c39936b916d4d5773ca5a87c4f8 100644 (file)
--- a/README
+++ b/README
@@ -1152,6 +1152,7 @@ The following options need to be configured:
                CONFIG_RTC_DS1307       - use Maxim, Inc. DS1307 RTC
                CONFIG_RTC_DS1337       - use Maxim, Inc. DS1337 RTC
                CONFIG_RTC_DS1338       - use Maxim, Inc. DS1338 RTC
+               CONFIG_RTC_DS1339       - use Maxim, Inc. DS1339 RTC
                CONFIG_RTC_DS164x       - use Dallas DS164x RTC
                CONFIG_RTC_ISL1208      - use Intersil ISL1208 RTC
                CONFIG_RTC_MAX6900      - use Maxim, Inc. MAX6900 RTC
index 003d322d23a19ed004561d1a052344aa146f634f..43f85460a395b40d324472fd2e378c76cb213568 100644 (file)
@@ -16,6 +16,7 @@ obj-$(CONFIG_RTC_DS1302) += ds1302.o
 obj-$(CONFIG_RTC_DS1306) += ds1306.o
 obj-$(CONFIG_RTC_DS1307) += ds1307.o
 obj-$(CONFIG_RTC_DS1338) += ds1307.o
+obj-$(CONFIG_RTC_DS1339) += ds1307.o
 obj-$(CONFIG_RTC_DS1337) += ds1337.o
 obj-$(CONFIG_RTC_DS1374) += ds1374.o
 obj-$(CONFIG_RTC_DS1388) += ds1337.o
index 1a2bad3c5c60142a647751de5d8792483c261414..03ab1a8c5d38c1ca8013aeabe304431fb8eb558d 100644 (file)
@@ -9,7 +9,7 @@
 
 /*
  * Date & Time support (no alarms) for Dallas Semiconductor (now Maxim)
- * DS1307 and DS1338 Real Time Clock (RTC).
+ * DS1307 and DS1338/9 Real Time Clock (RTC).
  *
  * based on ds1337.c
  */