Lines Matching refs:cd
75 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu); in hub_rt_counter_handler() local
82 cd->event_handler(cd); in hub_rt_counter_handler()
107 struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu); in hub_rt_clock_event_init() local
112 cd->name = name; in hub_rt_clock_event_init()
113 cd->features = CLOCK_EVT_FEAT_ONESHOT; in hub_rt_clock_event_init()
114 clockevent_set_clock(cd, CYCLES_PER_SEC); in hub_rt_clock_event_init()
115 cd->max_delta_ns = clockevent_delta2ns(0xfffffffffffff, cd); in hub_rt_clock_event_init()
116 cd->min_delta_ns = clockevent_delta2ns(0x300, cd); in hub_rt_clock_event_init()
117 cd->rating = 200; in hub_rt_clock_event_init()
118 cd->irq = irq; in hub_rt_clock_event_init()
119 cd->cpumask = cpumask_of(cpu); in hub_rt_clock_event_init()
120 cd->set_next_event = rt_next_event; in hub_rt_clock_event_init()
121 clockevents_register_device(cd); in hub_rt_clock_event_init()