rtc: interface: Add RTC offset to alarm after fix-up

[ Upstream commit 463927a8902a9f22c3633960119410f57d4c8920 ]

`rtc_add_offset()` is called by `__rtc_read_time()`
and `__rtc_read_alarm()` to add the RTC's offset to
the raw read-outs from the device drivers. However,
in the latter case, a fix-up algorithm is run if
the RTC device does not report a full `struct rtc_time`
alarm value. In that case, the offset was forgot to be
added.

Fixes: fd6792bb02 ("rtc: fix alarm read and set offset")

Signed-off-by: Csókás, Bence <csokas.bence@prolan.hu>
Link: https://lore.kernel.org/r/20240619140451.2800578-1-csokas.bence@prolan.hu
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Csókás, Bence 2024-06-19 16:04:52 +02:00 коммит произвёл Greg Kroah-Hartman
Родитель b23e7de390
Коммит f99a44c33f
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -274,10 +274,9 @@ int __rtc_read_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm)
return err; return err;
/* full-function RTCs won't have such missing fields */ /* full-function RTCs won't have such missing fields */
if (rtc_valid_tm(&alarm->time) == 0) { err = rtc_valid_tm(&alarm->time);
rtc_add_offset(rtc, &alarm->time); if (!err)
return 0; goto done;
}
/* get the "after" timestamp, to detect wrapped fields */ /* get the "after" timestamp, to detect wrapped fields */
err = rtc_read_time(rtc, &now); err = rtc_read_time(rtc, &now);
@ -379,6 +378,8 @@ done:
if (err) if (err)
dev_warn(&rtc->dev, "invalid alarm value: %ptR\n", dev_warn(&rtc->dev, "invalid alarm value: %ptR\n",
&alarm->time); &alarm->time);
else
rtc_add_offset(rtc, &alarm->time);
return err; return err;
} }