Lines Matching refs:cd
140 struct clock_event_device *cd; in clock_comparator_work() local
143 cd = this_cpu_ptr(&comparators); in clock_comparator_work()
144 cd->event_handler(cd); in clock_comparator_work()
161 struct clock_event_device *cd; in init_cpu_timer() local
168 cd = &per_cpu(comparators, cpu); in init_cpu_timer()
169 cd->name = "comparator"; in init_cpu_timer()
170 cd->features = CLOCK_EVT_FEAT_ONESHOT; in init_cpu_timer()
171 cd->mult = 16777; in init_cpu_timer()
172 cd->shift = 12; in init_cpu_timer()
173 cd->min_delta_ns = 1; in init_cpu_timer()
174 cd->min_delta_ticks = 1; in init_cpu_timer()
175 cd->max_delta_ns = LONG_MAX; in init_cpu_timer()
176 cd->max_delta_ticks = ULONG_MAX; in init_cpu_timer()
177 cd->rating = 400; in init_cpu_timer()
178 cd->cpumask = cpumask_of(cpu); in init_cpu_timer()
179 cd->set_next_event = s390_next_event; in init_cpu_timer()
181 clockevents_register_device(cd); in init_cpu_timer()