Lines Matching defs:timer
22 struct hrtimer timer;
55 static enum hrtimer_restart ir_rx51_timer_cb(struct hrtimer *timer)
57 struct ir_rx51 *ir_rx51 = container_of(timer, struct ir_rx51, timer);
85 hrtimer_add_expires_ns(timer, ns);
89 now = timer->base->get_time();
91 } while (hrtimer_get_expires_tv64(timer) < now);
128 hrtimer_start(&ir_rx51->timer,
164 hrtimer_cancel(&ir_rx51->timer);
247 hrtimer_init(&ir_rx51.timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
248 ir_rx51.timer.function = ir_rx51_timer_cb;