Linux RTC
 help / color / mirror / Atom feed
* [PATCH] rtc: pm8xxx: switch to devm_device_init_wakeup
@ 2025-03-17 11:13 alexandre.belloni
  2025-03-17 11:58 ` Johan Hovold
  0 siblings, 1 reply; 3+ messages in thread
From: alexandre.belloni @ 2025-03-17 11:13 UTC (permalink / raw)
  To: Johan Hovold, Alexandre Belloni; +Cc: linux-arm-msm, linux-rtc, linux-kernel

From: Alexandre Belloni <alexandre.belloni@bootlin.com>

Switch to devm_device_init_wakeup to avoid a possible memory leak as wakeup
is never disabled.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
---
 drivers/rtc/rtc-pm8xxx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/rtc/rtc-pm8xxx.c b/drivers/rtc/rtc-pm8xxx.c
index c6241a0c26e9..70cbac76147b 100644
--- a/drivers/rtc/rtc-pm8xxx.c
+++ b/drivers/rtc/rtc-pm8xxx.c
@@ -647,7 +647,7 @@ static int pm8xxx_rtc_probe(struct platform_device *pdev)
 		if (rc)
 			return rc;
 
-		device_init_wakeup(&pdev->dev, true);
+		devm_device_init_wakeup(&pdev->dev);
 	} else {
 		clear_bit(RTC_FEATURE_ALARM, rtc_dd->rtc->features);
 	}
-- 
2.48.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-03-17 13:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-17 11:13 [PATCH] rtc: pm8xxx: switch to devm_device_init_wakeup alexandre.belloni
2025-03-17 11:58 ` Johan Hovold
2025-03-17 13:34   ` Alexandre Belloni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox