pata_pdc2027x: Use 64-bit timekeeping
authorTina Ruchandani <ruchandani.tina@gmail.com>
Tue, 27 Jan 2015 10:19:48 +0000 (15:49 +0530)
committerTejun Heo <tj@kernel.org>
Tue, 27 Jan 2015 16:06:19 +0000 (11:06 -0500)
commitcedda4c3b1ded2cc4951aeca38fdf862b9b79fb6
tree2f02198d245329c9901f9d58484bdb67da95db01
parent552941503b9500a99be06cc9f60348099435b160
pata_pdc2027x: Use 64-bit timekeeping

Function pdc_detect_pll_input_clock uses 'struct timeval'
to measure start and end times, used to compute the pll_clock value.
'struct timeval' on 32-bit systems will have its tv_sec field
overflow in year 2038 and beyond. This patch uses 'ktime_t'
(which uses 64 bits for seconds) for start and end times instead.

Suggested-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Tina Ruchandani <ruchandani.tina@gmail.com>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Tejun Heo <tj@kernel.org>
drivers/ata/pata_pdc2027x.c