aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2020-08-14 13:07:29 +0200
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2020-08-21 00:13:44 +0200
commitfc9656a370499e5a32425b715f8fed241e832458 (patch)
tree3cb010171cad2f6c3794505e968e4eb8630984fe /drivers/rtc
parentrtc: cmos: zero-init wkalrm when reading from CMOS (diff)
downloadlinux-dev-fc9656a370499e5a32425b715f8fed241e832458.tar.xz
linux-dev-fc9656a370499e5a32425b715f8fed241e832458.zip
rtc: rtc-rs5c313: Drop obsolete platform_set_drvdata() call
Commit 284e2fa1da00a998 ("rtc: rtc-rs5c313: use devm_rtc_device_register()"), removed the last user of the driver-specific data. Hence there is no longer a need to set it. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Link: https://lore.kernel.org/r/20200814110731.29029-2-geert+renesas@glider.be
Diffstat (limited to 'drivers/rtc')
-rw-r--r--drivers/rtc/rtc-rs5c313.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-rs5c313.c b/drivers/rtc/rtc-rs5c313.c
index 89f38e3e917d..00b5ef753935 100644
--- a/drivers/rtc/rtc-rs5c313.c
+++ b/drivers/rtc/rtc-rs5c313.c
@@ -369,12 +369,7 @@ static int rs5c313_rtc_probe(struct platform_device *pdev)
struct rtc_device *rtc = devm_rtc_device_register(&pdev->dev, "rs5c313",
&rs5c313_rtc_ops, THIS_MODULE);
- if (IS_ERR(rtc))
- return PTR_ERR(rtc);
-
- platform_set_drvdata(pdev, rtc);
-
- return 0;
+ return PTR_ERR_OR_ZERO(rtc);
}
static struct platform_driver rs5c313_rtc_platform_driver = {