mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
rtc: rtc-vt8500: use devm_rtc_device_register()
devm_rtc_device_register() is device managed and makes cleanup paths simpler. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
e38fc305f4
commit
bc2e9c0b29
1 changed files with 2 additions and 6 deletions
|
@ -252,7 +252,7 @@ static int vt8500_rtc_probe(struct platform_device *pdev)
|
||||||
writel(VT8500_RTC_CR_ENABLE,
|
writel(VT8500_RTC_CR_ENABLE,
|
||||||
vt8500_rtc->regbase + VT8500_RTC_CR);
|
vt8500_rtc->regbase + VT8500_RTC_CR);
|
||||||
|
|
||||||
vt8500_rtc->rtc = rtc_device_register("vt8500-rtc", &pdev->dev,
|
vt8500_rtc->rtc = devm_rtc_device_register(&pdev->dev, "vt8500-rtc",
|
||||||
&vt8500_rtc_ops, THIS_MODULE);
|
&vt8500_rtc_ops, THIS_MODULE);
|
||||||
if (IS_ERR(vt8500_rtc->rtc)) {
|
if (IS_ERR(vt8500_rtc->rtc)) {
|
||||||
ret = PTR_ERR(vt8500_rtc->rtc);
|
ret = PTR_ERR(vt8500_rtc->rtc);
|
||||||
|
@ -266,13 +266,11 @@ static int vt8500_rtc_probe(struct platform_device *pdev)
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_err(&pdev->dev, "can't get irq %i, err %d\n",
|
dev_err(&pdev->dev, "can't get irq %i, err %d\n",
|
||||||
vt8500_rtc->irq_alarm, ret);
|
vt8500_rtc->irq_alarm, ret);
|
||||||
goto err_unreg;
|
goto err_return;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err_unreg:
|
|
||||||
rtc_device_unregister(vt8500_rtc->rtc);
|
|
||||||
err_return:
|
err_return:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -281,8 +279,6 @@ static int vt8500_rtc_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct vt8500_rtc *vt8500_rtc = platform_get_drvdata(pdev);
|
struct vt8500_rtc *vt8500_rtc = platform_get_drvdata(pdev);
|
||||||
|
|
||||||
rtc_device_unregister(vt8500_rtc->rtc);
|
|
||||||
|
|
||||||
/* Disable alarm matching */
|
/* Disable alarm matching */
|
||||||
writel(0, vt8500_rtc->regbase + VT8500_RTC_IS);
|
writel(0, vt8500_rtc->regbase + VT8500_RTC_IS);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue