Re: [PATCH] [media] rc-core: Remove 'struct timeval' usage

2015-11-05 Thread Arnd Bergmann
On Thursday 29 October 2015 00:16:57 Tina Ruchandani wrote: > streamzap uses 'struct timeval' to store the start time of a signal for > gap tracking. struct timeval uses a 32-bit seconds representation which > will overflow in year 2038 and beyond. Replace struct timeval with ktime_t > which uses a

[PATCH] [media] rc-core: Remove 'struct timeval' usage

2015-10-29 Thread Tina Ruchandani
streamzap uses 'struct timeval' to store the start time of a signal for gap tracking. struct timeval uses a 32-bit seconds representation which will overflow in year 2038 and beyond. Replace struct timeval with ktime_t which uses a 64-bit seconds representation and is 2038 safe. This patch uses kt