aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-meson.c
diff options
context:
space:
mode:
authorBartosz Golaszewski <bgolaszewski@baylibre.com>2020-11-09 17:34:06 +0100
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2020-11-19 12:50:11 +0100
commit3a905c2d9544a418953d6c18668f0f853fbd9be9 (patch)
treec3a6428a3c94fa42176a7e8e7cd6bda5fd6970c1 /drivers/rtc/rtc-meson.c
parent25ece30561d247b2931b0d11d92e9c976a668771 (diff)
downloadlinux-3a905c2d9544a418953d6c18668f0f853fbd9be9.tar.gz
rtc: add devm_ prefix to rtc_nvmem_register()
rtc_nvmem_register() is a managed interface. It doesn't require any release function to be called at driver detach. To avoid confusing driver authors, let's rename it to devm_rtc_nvmem_register() and add it to the list of managed interfaces in Documentation/. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Link: https://lore.kernel.org/r/20201109163409.24301-6-brgl@bgdev.pl
Diffstat (limited to 'drivers/rtc/rtc-meson.c')
-rw-r--r--drivers/rtc/rtc-meson.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-meson.c b/drivers/rtc/rtc-meson.c
index 47ebcf834cc21..938267713a4dc 100644
--- a/drivers/rtc/rtc-meson.c
+++ b/drivers/rtc/rtc-meson.c
@@ -365,7 +365,7 @@ static int meson_rtc_probe(struct platform_device *pdev)
}
meson_rtc_nvmem_config.priv = rtc;
- ret = rtc_nvmem_register(rtc->rtc, &meson_rtc_nvmem_config);
+ ret = devm_rtc_nvmem_register(rtc->rtc, &meson_rtc_nvmem_config);
if (ret)
goto out_disable_vdd;