mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
rtc: k3: handle errors while enabling wake irq
[ Upstream commitd31d7300eb] Due to the potential failure of enable_irq_wake(), it would be better to return error if it fails. Fixes:b09d633575("rtc: Introduce ti-k3-rtc") Cc: Nishanth Menon <nm@ti.com> Signed-off-by: Dhruva Gole <d-gole@ti.com> Link: https://lore.kernel.org/r/20230323085904.957999-1-d-gole@ti.com Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8a4e9482f4
commit
bb0433ae6f
@@ -632,7 +632,8 @@ static int __maybe_unused ti_k3_rtc_suspend(struct device *dev)
|
|||||||
struct ti_k3_rtc *priv = dev_get_drvdata(dev);
|
struct ti_k3_rtc *priv = dev_get_drvdata(dev);
|
||||||
|
|
||||||
if (device_may_wakeup(dev))
|
if (device_may_wakeup(dev))
|
||||||
enable_irq_wake(priv->irq);
|
return enable_irq_wake(priv->irq);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user