aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-s5m.c
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@bootlin.com>2021-08-04 12:41:29 +0200
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2021-08-06 10:31:59 +0200
commitdae68c6b9620ab694c8334de640c6d64daeb90e2 (patch)
tree66b9bbd46791ae7633f2ef5503cf171bdf75f9bf /drivers/rtc/rtc-s5m.c
parente73f0f0ee7541171d89f2e2491130c7771ba58d3 (diff)
downloadlinux-dae68c6b9620ab694c8334de640c6d64daeb90e2.tar.gz
rtc: s5m: switch to devm_rtc_allocate_device
Switch to devm_rtc_allocate_device/devm_rtc_register_device, this allows for further improvement of the driver. Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Link: https://lore.kernel.org/r/20210804104133.5158-1-alexandre.belloni@bootlin.com
Diffstat (limited to 'drivers/rtc/rtc-s5m.c')
-rw-r--r--drivers/rtc/rtc-s5m.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-s5m.c b/drivers/rtc/rtc-s5m.c
index 6b56f8eacba6f..4c1596c55de89 100644
--- a/drivers/rtc/rtc-s5m.c
+++ b/drivers/rtc/rtc-s5m.c
@@ -788,12 +788,16 @@ static int s5m_rtc_probe(struct platform_device *pdev)
device_init_wakeup(&pdev->dev, 1);
- info->rtc_dev = devm_rtc_device_register(&pdev->dev, "s5m-rtc",
- &s5m_rtc_ops, THIS_MODULE);
-
+ info->rtc_dev = devm_rtc_allocate_device(&pdev->dev);
if (IS_ERR(info->rtc_dev))
return PTR_ERR(info->rtc_dev);
+ info->rtc_dev->ops = &s5m_rtc_ops;
+
+ err = devm_rtc_register_device(info->rtc_dev);
+ if (err)
+ return err;
+
if (!info->irq) {
dev_info(&pdev->dev, "Alarm IRQ not available\n");
return 0;