diff options
author | Alexandre Belloni | 2019-12-14 23:10:07 +0100 |
---|---|---|
committer | Alexandre Belloni | 2019-12-18 10:37:47 +0100 |
commit | 9b45ef977440f30a0d990fc6bf60081c78c453bd (patch) | |
tree | 249d0287740420d73edac0b0a88b2a0b2a2832be /drivers/rtc | |
parent | 8049c11399a3109099d35fd29e9b55070577ade0 (diff) |
rtc: rv3029: use proper name for the driver
The correct name for the rtc is rv3029. c2 is actually the package form
factor rv3029c3 exists and simply has a smaller form factor.
Link: https://lore.kernel.org/r/20191214221022.622482-2-alexandre.belloni@bootlin.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-rv3029c2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-rv3029c2.c b/drivers/rtc/rtc-rv3029c2.c index 4cdf6588e1d9..b8294d9d94c5 100644 --- a/drivers/rtc/rtc-rv3029c2.c +++ b/drivers/rtc/rtc-rv3029c2.c @@ -883,7 +883,7 @@ MODULE_DEVICE_TABLE(of, rv3029_of_match); static struct i2c_driver rv3029_driver = { .driver = { - .name = "rtc-rv3029c2", + .name = "rv3029", .of_match_table = of_match_ptr(rv3029_of_match), }, .probe = rv3029_i2c_probe, |