Lines Matching refs:evt
56 struct clock_event_device evt; member
83 static int ccount_timer_shutdown(struct clock_event_device *evt) in ccount_timer_shutdown() argument
86 container_of(evt, struct ccount_timer, evt); in ccount_timer_shutdown()
89 disable_irq_nosync(evt->irq); in ccount_timer_shutdown()
95 static int ccount_timer_set_oneshot(struct clock_event_device *evt) in ccount_timer_set_oneshot() argument
98 container_of(evt, struct ccount_timer, evt); in ccount_timer_set_oneshot()
101 enable_irq(evt->irq); in ccount_timer_set_oneshot()
108 .evt = {
120 struct clock_event_device *evt = &this_cpu_ptr(&ccount_timer)->evt; in timer_interrupt() local
123 evt->event_handler(evt); in timer_interrupt()
130 struct clock_event_device *clockevent = &timer->evt; in local_timer_setup()
195 irq = this_cpu_ptr(&ccount_timer)->evt.irq; in time_init()