|
@@ -15,6 +15,7 @@
|
|
|
#include <linux/module.h>
|
|
|
#include <linux/platform_device.h>
|
|
|
#include <linux/rtc.h>
|
|
|
+#include <linux/err.h>
|
|
|
|
|
|
#include <linux/mfd/da9052/da9052.h>
|
|
|
#include <linux/mfd/da9052/reg.h>
|
|
@@ -249,10 +250,7 @@ static int da9052_rtc_probe(struct platform_device *pdev)
|
|
|
|
|
|
rtc->rtc = devm_rtc_device_register(&pdev->dev, pdev->name,
|
|
|
&da9052_rtc_ops, THIS_MODULE);
|
|
|
- if (IS_ERR(rtc->rtc))
|
|
|
- return PTR_ERR(rtc->rtc);
|
|
|
-
|
|
|
- return 0;
|
|
|
+ return PTR_RET(rtc->rtc);
|
|
|
}
|
|
|
|
|
|
static struct platform_driver da9052_rtc_driver = {
|