diff options
author | Emmanuel Nicolet <emmanuel.nicolet@gmail.com> | 2019-09-27 13:04:46 +0200 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2019-10-03 21:55:17 +0200 |
commit | eaa6ef563d1a60fbfe6c128bf8fdb74405035b0c (patch) | |
tree | 85341021e9cd0a92945a1431d530e6f4558ce172 /drivers/rtc/rtc-r7301.c | |
parent | rtc: at91rm9200: use of_device_get_match_data() (diff) | |
download | linux-eaa6ef563d1a60fbfe6c128bf8fdb74405035b0c.tar.xz linux-eaa6ef563d1a60fbfe6c128bf8fdb74405035b0c.zip |
rtc: interface: use timeu64_t for range_max
For rtc drivers where rtc->range_max is set U64_MAX, like the PS3 rtc,
rtc_valid_range() always returns -ERANGE. This is because the local
variable range_max has type time64_t, so the test
if (time < range_min || time > range_max)
return -ERANGE;
becomes (time < range_min || time > -1), which always evaluates to true.
timeu64_t should be used, since it's the type of rtc->range_max.
Signed-off-by: Emmanuel Nicolet <emmanuel.nicolet@gmail.com>
Link: https://lore.kernel.org/r/20190927110446.GA6289@gmail.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc/rtc-r7301.c')
0 files changed, 0 insertions, 0 deletions