Re: [PATCH v2] fbdev: pxa3xx: use ktime_get_ts64 for time stamps

2018-01-04 Thread Bartlomiej Zolnierkiewicz
On Monday, November 27, 2017 05:46:14 PM Arnd Bergmann wrote: > do_gettimeofday() is deprecated because it is not y2038 safe, so I'm > changing the calculation for the diagnostic output over to using > 'timespec64'. > > We really only print time deltas here, so changing it to monotonic > time

Re: [PATCH v2] fbdev: pxa3xx: use ktime_get_ts64 for time stamps

2018-01-04 Thread Bartlomiej Zolnierkiewicz
On Monday, November 27, 2017 05:46:14 PM Arnd Bergmann wrote: > do_gettimeofday() is deprecated because it is not y2038 safe, so I'm > changing the calculation for the diagnostic output over to using > 'timespec64'. > > We really only print time deltas here, so changing it to monotonic > time

[PATCH v2] fbdev: pxa3xx: use ktime_get_ts64 for time stamps

2017-11-27 Thread Arnd Bergmann
do_gettimeofday() is deprecated because it is not y2038 safe, so I'm changing the calculation for the diagnostic output over to using 'timespec64'. We really only print time deltas here, so changing it to monotonic time makes this more robust, the correct accessor for this is ktime_get_ts64().

[PATCH v2] fbdev: pxa3xx: use ktime_get_ts64 for time stamps

2017-11-27 Thread Arnd Bergmann
do_gettimeofday() is deprecated because it is not y2038 safe, so I'm changing the calculation for the diagnostic output over to using 'timespec64'. We really only print time deltas here, so changing it to monotonic time makes this more robust, the correct accessor for this is ktime_get_ts64().