From c47ce45fb864044b01819a8040273646a40e23aa Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Thu, 12 Oct 2023 20:46:57 +0200 Subject: [PATCH] WakeupMgr: Forward rtc_dev & dodgy_rtc to the backend --- frontend/device/wakeupmgr.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/device/wakeupmgr.lua b/frontend/device/wakeupmgr.lua index e2632cfea..25069c911 100644 --- a/frontend/device/wakeupmgr.lua +++ b/frontend/device/wakeupmgr.lua @@ -47,6 +47,10 @@ end function WakeupMgr:init() self._task_queue = {} + + -- Propagate rtc quirks to the RTC backend + self.rtc.dev_rtc = self.dev_rtc + self.rtc.dodgy_rtc = self.dodgy_rtc end -- This is a dummy task we use when working around i.MX5 RTC issues.