diff options
author | Michael Büsch <m@bues.ch> | 2016-03-04 22:39:17 +0100 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2016-03-14 17:08:32 +0100 |
commit | baba623f124423797443401a667cdeb714a26d1f (patch) | |
tree | 5e8767b6468a1d0cd06ad129f5c3441d127418a2 /drivers/rtc | |
parent | aba39d27bdb2e92b22f0cd1b29adb3a86d781d2c (diff) |
rtc: rv3029: Add "rv3029" I2C device id
The C2 suffix does not appear in the latest datasheet, so add
a device ID without it.
Signed-off-by: Michael Buesch <m@bues.ch>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-rv3029c2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-rv3029c2.c b/drivers/rtc/rtc-rv3029c2.c index 3083ace009d4..fc0dbc495edf 100644 --- a/drivers/rtc/rtc-rv3029c2.c +++ b/drivers/rtc/rtc-rv3029c2.c @@ -381,6 +381,7 @@ static const struct rtc_class_ops rv3029_rtc_ops = { }; static struct i2c_device_id rv3029_id[] = { + { "rv3029", 0 }, { "rv3029c2", 0 }, { } }; |