Lines Matching defs:timer
23 struct hrtimer timer;
54 static enum hrtimer_restart ir_rx51_timer_cb(struct hrtimer *timer)
56 struct ir_rx51 *ir_rx51 = container_of(timer, struct ir_rx51, timer);
84 hrtimer_add_expires_ns(timer, ns);
88 now = timer->base->get_time();
90 } while (hrtimer_get_expires_tv64(timer) < now);
127 hrtimer_start(&ir_rx51->timer,
163 hrtimer_cancel(&ir_rx51->timer);
242 hrtimer_init(&ir_rx51.timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
243 ir_rx51.timer.function = ir_rx51_timer_cb;