]> git.baikalelectronics.ru Git - kernel.git/commit
Input: hp_sdc_rtc - fix y2038 problem in proc_show
authorWEN Pingbo <pingbo.wen@linaro.org>
Sun, 18 Oct 2015 23:33:47 +0000 (16:33 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Fri, 23 Oct 2015 06:31:28 +0000 (23:31 -0700)
commitafb444fafa11d7361e88d3c8ec534f49ee7748ad
tree9aedda1e9e9960ef5a7fc1f74efb16b672a13fa0
parent2fceda973b91e0cd8c506bef09128ead9641282d
Input: hp_sdc_rtc - fix y2038 problem in proc_show

hp_sdc_rtc_proc_show() use timeval to store the time, which will overflow
in 2038.

This patch fixes this problem by replacing timeval with timespec64.
hp_sdc_rtc_proc_show() only output string, so that userspace will work
normally if we apply this patch.

Not all timer in i8042 have y2038 risk(handshake, match timer, etc),
Replacements in those timer are just for consistency.

Signed-off-by: WEN Pingbo <pingbo.wen@linaro.org>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/misc/hp_sdc_rtc.c