Lines Matching refs:cd
81 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu); in hub_rt_counter_handler() local
88 cd->event_handler(cd); in hub_rt_counter_handler()
113 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu); in hub_rt_clock_event_init() local
118 cd->name = name; in hub_rt_clock_event_init()
119 cd->features = CLOCK_EVT_FEAT_ONESHOT; in hub_rt_clock_event_init()
120 clockevent_set_clock(cd, CYCLES_PER_SEC); in hub_rt_clock_event_init()
121 cd->max_delta_ns = clockevent_delta2ns(0xfffffffffffff, cd); in hub_rt_clock_event_init()
122 cd->min_delta_ns = clockevent_delta2ns(0x300, cd); in hub_rt_clock_event_init()
123 cd->rating = 200; in hub_rt_clock_event_init()
124 cd->irq = irq; in hub_rt_clock_event_init()
125 cd->cpumask = cpumask_of(cpu); in hub_rt_clock_event_init()
126 cd->set_next_event = rt_next_event; in hub_rt_clock_event_init()
127 cd->set_mode = rt_set_mode; in hub_rt_clock_event_init()
128 clockevents_register_device(cd); in hub_rt_clock_event_init()