Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9ed39bf9 authored by Devendra Naga's avatar Devendra Naga Committed by Linus Torvalds
Browse files

rtc: rtc-davinci: return correct error code if rtc_device_register() fails



rtc_device_register() returns a pointer containing error code in case
of error.  Use that in the error return.

Signed-off-by: default avatarDevendra Naga <devendra.aaru@gmail.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Miguel Aguilar <miguel.aguilar@ridgerun.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 32c4746c
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -529,8 +529,9 @@ static int __init davinci_rtc_probe(struct platform_device *pdev)
	davinci_rtc->rtc = rtc_device_register(pdev->name, &pdev->dev,
				    &davinci_rtc_ops, THIS_MODULE);
	if (IS_ERR(davinci_rtc->rtc)) {
		dev_err(dev, "unable to register RTC device, err %ld\n",
				PTR_ERR(davinci_rtc->rtc));
		ret = PTR_ERR(davinci_rtc->rtc);
		dev_err(dev, "unable to register RTC device, err %d\n",
				ret);
		goto fail3;
	}