summaryrefslogtreecommitdiff
path: root/drivers/rtc
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-03-24 08:11:30 -0400
committerTom Rini <trini@konsulko.com>2021-03-24 08:11:30 -0400
commit1886e9d0c3dde3fbceb7856c3b855b3c006c475c (patch)
tree6db9d2285531a4caf702cb52ffc09a1aa3ce2c8a /drivers/rtc
parentbf3b0d69dae24d2566bba5f0d6723f1b413e1057 (diff)
parentcad6ffa34d255692833576bc2c911d1ee39f2af0 (diff)
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq
- Bug fixes related to FSL-IFC, watchdog - layerscape-pcie, flexspi, T2080rdb.
Diffstat (limited to 'drivers/rtc')
-rw-r--r--drivers/rtc/ds1307.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/rtc/ds1307.c b/drivers/rtc/ds1307.c
index 17344d4d4ff..2015ce9bbcd 100644
--- a/drivers/rtc/ds1307.c
+++ b/drivers/rtc/ds1307.c
@@ -23,6 +23,7 @@
enum ds_type {
ds_1307,
ds_1337,
+ ds_1339,
ds_1340,
m41t11,
mcp794xx,
@@ -344,6 +345,7 @@ static const struct rtc_ops ds1307_rtc_ops = {
static const struct udevice_id ds1307_rtc_ids[] = {
{ .compatible = "dallas,ds1307", .data = ds_1307 },
{ .compatible = "dallas,ds1337", .data = ds_1337 },
+ { .compatible = "dallas,ds1339", .data = ds_1339 },
{ .compatible = "dallas,ds1340", .data = ds_1340 },
{ .compatible = "microchip,mcp7941x", .data = mcp794xx },
{ .compatible = "st,m41t11", .data = m41t11 },