Source
136
136
hv_init_timer(0, 0);
137
137
hv_init_timer_config(0, 0);
138
138
if (direct_mode_enabled)
139
139
hv_disable_stimer0_percpu_irq(stimer0_irq);
140
140
141
141
return 0;
142
142
}
143
143
144
144
static int hv_ce_set_oneshot(struct clock_event_device *evt)
145
145
{
146
-
union hv_timer_config timer_cfg;
146
+
union hv_stimer_config timer_cfg;
147
147
148
148
timer_cfg.as_uint64 = 0;
149
149
timer_cfg.enable = 1;
150
150
timer_cfg.auto_enable = 1;
151
151
if (direct_mode_enabled) {
152
152
/*
153
153
* When it expires, the timer will directly interrupt
154
154
* on the specified hardware vector/IRQ.
155
155
*/
156
156
timer_cfg.direct_mode = 1;