Lines Matching refs:cd
37 struct clock_event_device *cd; in constant_timer_interrupt() local
41 cd = &per_cpu(constant_clockevent_device, cpu); in constant_timer_interrupt()
42 cd->event_handler(cd); in constant_timer_interrupt()
154 struct clock_event_device *cd; in constant_clockevent_init() local
163 cd = &per_cpu(constant_clockevent_device, cpu); in constant_clockevent_init()
165 cd->name = "Constant"; in constant_clockevent_init()
166 cd->features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_PERCPU; in constant_clockevent_init()
168 cd->irq = irq; in constant_clockevent_init()
169 cd->rating = 320; in constant_clockevent_init()
170 cd->cpumask = cpumask_of(cpu); in constant_clockevent_init()
171 cd->set_state_oneshot = constant_set_state_oneshot; in constant_clockevent_init()
172 cd->set_state_oneshot_stopped = constant_set_state_shutdown; in constant_clockevent_init()
173 cd->set_state_periodic = constant_set_state_periodic; in constant_clockevent_init()
174 cd->set_state_shutdown = constant_set_state_shutdown; in constant_clockevent_init()
175 cd->set_next_event = constant_timer_next_event; in constant_clockevent_init()
176 cd->event_handler = constant_event_handler; in constant_clockevent_init()
178 clockevents_config_and_register(cd, const_clock_freq, min_delta, max_delta); in constant_clockevent_init()