ktime: Get rid of the union
[linux-2.6-block.git] / drivers / usb / host / fotg210-hcd.c
index 66efa9a6768776f91407dd3e91b7499560301ac2..4dda56ef06cd2b13c7ce820a443b97052701dac9 100644 (file)
@@ -1381,7 +1381,7 @@ static enum hrtimer_restart fotg210_hrtimer_func(struct hrtimer *t)
         */
        now = ktime_get();
        for_each_set_bit(e, &events, FOTG210_HRTIMER_NUM_EVENTS) {
-               if (now.tv64 >= fotg210->hr_timeouts[e].tv64)
+               if (now >= fotg210->hr_timeouts[e])
                        event_handlers[e](fotg210);
                else
                        fotg210_enable_event(fotg210, e, false);