diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-04-29 19:20:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:35 -0400 |
commit | 7f391f54cdbc68a9617642c2141c696ed368f594 (patch) | |
tree | 28a0c29750f58be285a7081e6c3f182198402088 /drivers/rtc/rtc-max77686.c | |
parent | 1a3224f141365baab8861d0852ac134bd1d6877b (diff) |
drivers/rtc/rtc-max77686.c: use devm_regmap_init_i2c()
This driver already uses other devm_* APIs.
Convert regmap_init_i2c too.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Chiwoong Byun <woong.byun@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-max77686.c')
-rw-r--r-- | drivers/rtc/rtc-max77686.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-max77686.c b/drivers/rtc/rtc-max77686.c index fb08b89c41e7..771812d62e6b 100644 --- a/drivers/rtc/rtc-max77686.c +++ b/drivers/rtc/rtc-max77686.c | |||
@@ -514,7 +514,7 @@ static int max77686_rtc_probe(struct platform_device *pdev) | |||
514 | info->dev = &pdev->dev; | 514 | info->dev = &pdev->dev; |
515 | info->max77686 = max77686; | 515 | info->max77686 = max77686; |
516 | info->rtc = max77686->rtc; | 516 | info->rtc = max77686->rtc; |
517 | info->max77686->rtc_regmap = regmap_init_i2c(info->max77686->rtc, | 517 | info->max77686->rtc_regmap = devm_regmap_init_i2c(info->max77686->rtc, |
518 | &max77686_rtc_regmap_config); | 518 | &max77686_rtc_regmap_config); |
519 | if (IS_ERR(info->max77686->rtc_regmap)) { | 519 | if (IS_ERR(info->max77686->rtc_regmap)) { |
520 | ret = PTR_ERR(info->max77686->rtc_regmap); | 520 | ret = PTR_ERR(info->max77686->rtc_regmap); |