aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-rv3032.c
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@bootlin.com>2020-11-08 23:37:10 +0100
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2020-11-15 00:51:34 +0100
commit767fbb7102c69bedb8dca5a877c4eae4bbf8cf9b (patch)
tree7dc36ff1cfb75ca483aa9fa79d303aed2684828c /drivers/rtc/rtc-rv3032.c
parentMAINTAINERS: Set myself as Goldfish RTC maintainer (diff)
downloadlinux-dev-767fbb7102c69bedb8dca5a877c4eae4bbf8cf9b.tar.xz
linux-dev-767fbb7102c69bedb8dca5a877c4eae4bbf8cf9b.zip
rtc: rv3032: fix nvram nvmem priv pointer
The nvmem priv pointer is set to rv3032 but the rv3032_nvram_write and rv3032_nvram_read expect the regmap pointer. Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Link: https://lore.kernel.org/r/20201108223710.1574331-1-alexandre.belloni@bootlin.com
Diffstat (limited to 'drivers/rtc/rtc-rv3032.c')
-rw-r--r--drivers/rtc/rtc-rv3032.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-rv3032.c b/drivers/rtc/rtc-rv3032.c
index 3e67f71f4261..14e931d6f9c6 100644
--- a/drivers/rtc/rtc-rv3032.c
+++ b/drivers/rtc/rtc-rv3032.c
@@ -889,7 +889,7 @@ static int rv3032_probe(struct i2c_client *client)
if (ret)
return ret;
- nvmem_cfg.priv = rv3032;
+ nvmem_cfg.priv = rv3032->regmap;
rtc_nvmem_register(rv3032->rtc, &nvmem_cfg);
eeprom_cfg.priv = rv3032;
rtc_nvmem_register(rv3032->rtc, &eeprom_cfg);