projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
710e4a8
)
rtc: rv3028: Add missed check for devm_regmap_init_i2c()
author
Chuhong Yuan
<hslester96@gmail.com>
Thu, 28 May 2020 10:39:50 +0000
(18:39 +0800)
committer
Alexandre Belloni
<alexandre.belloni@bootlin.com>
Sat, 30 May 2020 02:12:43 +0000
(
04:12
+0200)
rv3028_probe() misses a check for devm_regmap_init_i2c().
Add the missed check to fix it.
Fixes:
e6e7376cfd7b
("rtc: rv3028: add new driver")
Signed-off-by: Chuhong Yuan <hslester96@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Link:
https://lore.kernel.org/r/20200528103950.912353-1-hslester96@gmail.com
drivers/rtc/rtc-rv3028.c
patch
|
blob
|
history
diff --git
a/drivers/rtc/rtc-rv3028.c
b/drivers/rtc/rtc-rv3028.c
index
a0ddc86
..
ec84db0
100644
(file)
--- a/
drivers/rtc/rtc-rv3028.c
+++ b/
drivers/rtc/rtc-rv3028.c
@@
-755,6
+755,8
@@
static int rv3028_probe(struct i2c_client *client)
return -ENOMEM;
rv3028->regmap = devm_regmap_init_i2c(client, ®map_config);
+ if (IS_ERR(rv3028->regmap))
+ return PTR_ERR(rv3028->regmap);
i2c_set_clientdata(client, rv3028);