1
0
Fork 0

rtc: meson: remove useless rtc_nvmem_unregister call

rtc_nvmem_unregister() is called on rtc_device release so it is not
necessary to call it from the driver.

Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
hifive-unleashed-5.1
Alexandre Belloni 2019-02-11 10:46:46 +01:00
parent d8fe6009aa
commit 5736610ab6
1 changed files with 1 additions and 4 deletions

View File

@ -373,13 +373,10 @@ static int meson_rtc_probe(struct platform_device *pdev)
ret = rtc_register_device(rtc->rtc);
if (ret)
goto out_unregister_nvmem;
goto out_disable_vdd;
return 0;
out_unregister_nvmem:
rtc_nvmem_unregister(rtc->rtc);
out_disable_vdd:
regulator_disable(rtc->vdd);
return ret;