Home
last modified time | relevance | path

Searched refs:evt (Results 1 – 25 of 255) sorted by relevance

1234567891011

/kernel/linux/linux-5.10/arch/powerpc/kernel/
Dmce.c39 static void machine_check_ue_event(struct machine_check_event *evt);
232 static void machine_check_ue_event(struct machine_check_event *evt) in machine_check_ue_event() argument
242 memcpy(this_cpu_ptr(&mce_ue_event_queue[index]), evt, sizeof(*evt)); in machine_check_ue_event()
254 struct machine_check_event evt; in machine_check_queue_event() local
256 if (!get_mce_event(&evt, MCE_EVENT_RELEASE)) in machine_check_queue_event()
265 memcpy(this_cpu_ptr(&mce_event_queue[index]), &evt, sizeof(evt)); in machine_check_queue_event()
290 struct machine_check_event *evt; in machine_process_ue_event() local
294 evt = this_cpu_ptr(&mce_ue_event_queue[index]); in machine_process_ue_event()
295 blocking_notifier_call_chain(&mce_notifier_list, 0, evt); in machine_process_ue_event()
305 if (evt->error_type == MCE_ERROR_TYPE_UE) { in machine_process_ue_event()
[all …]
/kernel/linux/linux-5.10/drivers/clocksource/
Dexynos_mct.c81 struct clock_event_device evt; member
284 struct clock_event_device *evt) in exynos4_comp_set_next_event() argument
291 static int mct_set_state_shutdown(struct clock_event_device *evt) in mct_set_state_shutdown() argument
297 static int mct_set_state_periodic(struct clock_event_device *evt) in mct_set_state_periodic() argument
301 cycles_per_jiffy = (((unsigned long long)NSEC_PER_SEC / HZ * evt->mult) in mct_set_state_periodic()
302 >> evt->shift); in mct_set_state_periodic()
323 struct clock_event_device *evt = dev_id; in exynos4_mct_comp_isr() local
327 evt->event_handler(evt); in exynos4_mct_comp_isr()
390 struct clock_event_device *evt) in exynos4_tick_set_next_event() argument
394 mevt = container_of(evt, struct mct_clock_event_device, evt); in exynos4_tick_set_next_event()
[all …]
Dtimer-qcom.c39 struct clock_event_device *evt = dev_id; in msm_timer_interrupt() local
41 if (clockevent_state_oneshot(evt)) { in msm_timer_interrupt()
46 evt->event_handler(evt); in msm_timer_interrupt()
51 struct clock_event_device *evt) in msm_timer_set_next_event() argument
69 static int msm_timer_shutdown(struct clock_event_device *evt) in msm_timer_shutdown() argument
101 struct clock_event_device *evt = per_cpu_ptr(msm_evt, cpu); in msm_local_timer_starting_cpu() local
104 evt->irq = msm_timer_irq; in msm_local_timer_starting_cpu()
105 evt->name = "msm_timer"; in msm_local_timer_starting_cpu()
106 evt->features = CLOCK_EVT_FEAT_ONESHOT; in msm_local_timer_starting_cpu()
107 evt->rating = 200; in msm_local_timer_starting_cpu()
[all …]
Dtimer-rda.c67 static int rda_ostimer_set_state_shutdown(struct clock_event_device *evt) in rda_ostimer_set_state_shutdown() argument
69 struct timer_of *to = to_timer_of(evt); in rda_ostimer_set_state_shutdown()
76 static int rda_ostimer_set_state_oneshot(struct clock_event_device *evt) in rda_ostimer_set_state_oneshot() argument
78 struct timer_of *to = to_timer_of(evt); in rda_ostimer_set_state_oneshot()
85 static int rda_ostimer_set_state_periodic(struct clock_event_device *evt) in rda_ostimer_set_state_periodic() argument
87 struct timer_of *to = to_timer_of(evt); in rda_ostimer_set_state_periodic()
93 evt->mult) >> evt->shift; in rda_ostimer_set_state_periodic()
99 static int rda_ostimer_tick_resume(struct clock_event_device *evt) in rda_ostimer_tick_resume() argument
104 static int rda_ostimer_set_next_event(unsigned long evt, in rda_ostimer_set_next_event() argument
109 rda_ostimer_start(timer_of_base(to), false, evt); in rda_ostimer_set_next_event()
[all …]
Dtimer-armada-370-xp.c126 static int armada_370_xp_clkevt_shutdown(struct clock_event_device *evt) in armada_370_xp_clkevt_shutdown() argument
140 static int armada_370_xp_clkevt_set_periodic(struct clock_event_device *evt) in armada_370_xp_clkevt_set_periodic() argument
162 struct clock_event_device *evt = dev_id; in armada_370_xp_timer_interrupt() local
165 evt->event_handler(evt); in armada_370_xp_timer_interrupt()
175 struct clock_event_device *evt = per_cpu_ptr(armada_370_xp_evt, cpu); in armada_370_xp_timer_starting_cpu() local
184 evt->name = "armada_370_xp_per_cpu_tick"; in armada_370_xp_timer_starting_cpu()
185 evt->features = CLOCK_EVT_FEAT_ONESHOT | in armada_370_xp_timer_starting_cpu()
187 evt->shift = 32; in armada_370_xp_timer_starting_cpu()
188 evt->rating = 300; in armada_370_xp_timer_starting_cpu()
189 evt->set_next_event = armada_370_xp_clkevt_next_event; in armada_370_xp_timer_starting_cpu()
[all …]
Dtimer-ixp4xx.c73 to_ixp4xx_timer(struct clock_event_device *evt) in to_ixp4xx_timer() argument
75 return container_of(evt, struct ixp4xx_timer, clkevt); in to_ixp4xx_timer()
96 struct clock_event_device *evt = &tmr->clkevt; in ixp4xx_timer_interrupt() local
102 evt->event_handler(evt); in ixp4xx_timer_interrupt()
108 struct clock_event_device *evt) in ixp4xx_set_next_event() argument
110 struct ixp4xx_timer *tmr = to_ixp4xx_timer(evt); in ixp4xx_set_next_event()
122 static int ixp4xx_shutdown(struct clock_event_device *evt) in ixp4xx_shutdown() argument
124 struct ixp4xx_timer *tmr = to_ixp4xx_timer(evt); in ixp4xx_shutdown()
134 static int ixp4xx_set_oneshot(struct clock_event_device *evt) in ixp4xx_set_oneshot() argument
136 struct ixp4xx_timer *tmr = to_ixp4xx_timer(evt); in ixp4xx_set_oneshot()
[all …]
Dtimer-npcm7xx.c56 static int npcm7xx_timer_resume(struct clock_event_device *evt) in npcm7xx_timer_resume() argument
58 struct timer_of *to = to_timer_of(evt); in npcm7xx_timer_resume()
68 static int npcm7xx_timer_shutdown(struct clock_event_device *evt) in npcm7xx_timer_shutdown() argument
70 struct timer_of *to = to_timer_of(evt); in npcm7xx_timer_shutdown()
80 static int npcm7xx_timer_oneshot(struct clock_event_device *evt) in npcm7xx_timer_oneshot() argument
82 struct timer_of *to = to_timer_of(evt); in npcm7xx_timer_oneshot()
93 static int npcm7xx_timer_periodic(struct clock_event_device *evt) in npcm7xx_timer_periodic() argument
95 struct timer_of *to = to_timer_of(evt); in npcm7xx_timer_periodic()
108 static int npcm7xx_clockevent_set_next_event(unsigned long evt, in npcm7xx_clockevent_set_next_event() argument
114 writel(evt, timer_of_base(to) + NPCM7XX_REG_TICR0); in npcm7xx_clockevent_set_next_event()
[all …]
Dtimer-fttmr010.c105 int (*timer_shutdown)(struct clock_event_device *evt);
117 static inline struct fttmr010 *to_fttmr010(struct clock_event_device *evt) in to_fttmr010() argument
119 return container_of(evt, struct fttmr010, clkevt); in to_fttmr010()
143 struct clock_event_device *evt) in fttmr010_timer_set_next_event() argument
145 struct fttmr010 *fttmr010 = to_fttmr010(evt); in fttmr010_timer_set_next_event()
149 fttmr010->timer_shutdown(evt); in fttmr010_timer_set_next_event()
171 static int ast2600_timer_shutdown(struct clock_event_device *evt) in ast2600_timer_shutdown() argument
173 struct fttmr010 *fttmr010 = to_fttmr010(evt); in ast2600_timer_shutdown()
181 static int fttmr010_timer_shutdown(struct clock_event_device *evt) in fttmr010_timer_shutdown() argument
183 struct fttmr010 *fttmr010 = to_fttmr010(evt); in fttmr010_timer_shutdown()
[all …]
Ddw_apb_timer.c38 ced_to_dw_apb_ced(struct clock_event_device *evt) in ced_to_dw_apb_ced() argument
40 return container_of(evt, struct dw_apb_clock_event_device, ced); in ced_to_dw_apb_ced()
97 struct clock_event_device *evt = data; in dw_apb_clockevent_irq() local
98 struct dw_apb_clock_event_device *dw_ced = ced_to_dw_apb_ced(evt); in dw_apb_clockevent_irq()
100 if (!evt->event_handler) { in dw_apb_clockevent_irq()
108 evt->event_handler(evt); in dw_apb_clockevent_irq()
121 static int apbt_shutdown(struct clock_event_device *evt) in apbt_shutdown() argument
123 struct dw_apb_clock_event_device *dw_ced = ced_to_dw_apb_ced(evt); in apbt_shutdown()
127 cpumask_first(evt->cpumask)); in apbt_shutdown()
135 static int apbt_set_oneshot(struct clock_event_device *evt) in apbt_set_oneshot() argument
[all …]
Dbcm2835_timer.c33 struct clock_event_device evt; member
47 struct bcm2835_timer, evt); in bcm2835_time_set_next_event()
60 event_handler = READ_ONCE(timer->evt.event_handler); in bcm2835_time_interrupt()
62 event_handler(&timer->evt); in bcm2835_time_interrupt()
110 timer->evt.name = node->name; in bcm2835_timer_init()
111 timer->evt.rating = 300; in bcm2835_timer_init()
112 timer->evt.features = CLOCK_EVT_FEAT_ONESHOT; in bcm2835_timer_init()
113 timer->evt.set_next_event = bcm2835_time_set_next_event; in bcm2835_timer_init()
114 timer->evt.cpumask = cpumask_of(0); in bcm2835_timer_init()
123 clockevents_config_and_register(&timer->evt, freq, 0xf, 0xffffffff); in bcm2835_timer_init()
Ddummy_timer.c18 struct clock_event_device *evt = per_cpu_ptr(&dummy_timer_evt, cpu); in dummy_timer_starting_cpu() local
20 evt->name = "dummy_timer"; in dummy_timer_starting_cpu()
21 evt->features = CLOCK_EVT_FEAT_PERIODIC | in dummy_timer_starting_cpu()
24 evt->rating = 100; in dummy_timer_starting_cpu()
25 evt->cpumask = cpumask_of(cpu); in dummy_timer_starting_cpu()
27 clockevents_register_device(evt); in dummy_timer_starting_cpu()
Dtimer-sun4i.c85 static int sun4i_clkevt_shutdown(struct clock_event_device *evt) in sun4i_clkevt_shutdown() argument
87 struct timer_of *to = to_timer_of(evt); in sun4i_clkevt_shutdown()
94 static int sun4i_clkevt_set_oneshot(struct clock_event_device *evt) in sun4i_clkevt_set_oneshot() argument
96 struct timer_of *to = to_timer_of(evt); in sun4i_clkevt_set_oneshot()
104 static int sun4i_clkevt_set_periodic(struct clock_event_device *evt) in sun4i_clkevt_set_periodic() argument
106 struct timer_of *to = to_timer_of(evt); in sun4i_clkevt_set_periodic()
115 static int sun4i_clkevt_next_event(unsigned long evt, in sun4i_clkevt_next_event() argument
121 sun4i_clkevt_time_setup(timer_of_base(to), 0, evt - TIMER_SYNC_TICKS); in sun4i_clkevt_next_event()
134 struct clock_event_device *evt = (struct clock_event_device *)dev_id; in sun4i_timer_interrupt() local
135 struct timer_of *to = to_timer_of(evt); in sun4i_timer_interrupt()
[all …]
Dtimer-atcpit100.c121 static int atcpit100_clkevt_next_event(unsigned long evt, in atcpit100_clkevt_next_event() argument
129 writel(evt, timer_of_base(to) + CH0_REL); in atcpit100_clkevt_next_event()
135 static int atcpit100_clkevt_set_periodic(struct clock_event_device *evt) in atcpit100_clkevt_set_periodic() argument
137 struct timer_of *to = to_timer_of(evt); in atcpit100_clkevt_set_periodic()
144 static int atcpit100_clkevt_shutdown(struct clock_event_device *evt) in atcpit100_clkevt_shutdown() argument
146 struct timer_of *to = to_timer_of(evt); in atcpit100_clkevt_shutdown()
152 static int atcpit100_clkevt_set_oneshot(struct clock_event_device *evt) in atcpit100_clkevt_set_oneshot() argument
154 struct timer_of *to = to_timer_of(evt); in atcpit100_clkevt_set_oneshot()
166 struct clock_event_device *evt = (struct clock_event_device *)dev_id; in atcpit100_timer_interrupt() local
167 struct timer_of *to = to_timer_of(evt); in atcpit100_timer_interrupt()
[all …]
Dasm9260_timer.c110 struct clock_event_device *evt) in asm9260_timer_set_next_event() argument
119 static inline void __asm9260_timer_shutdown(struct clock_event_device *evt) in __asm9260_timer_shutdown() argument
125 static int asm9260_timer_shutdown(struct clock_event_device *evt) in asm9260_timer_shutdown() argument
127 __asm9260_timer_shutdown(evt); in asm9260_timer_shutdown()
131 static int asm9260_timer_set_oneshot(struct clock_event_device *evt) in asm9260_timer_set_oneshot() argument
133 __asm9260_timer_shutdown(evt); in asm9260_timer_set_oneshot()
141 static int asm9260_timer_set_periodic(struct clock_event_device *evt) in asm9260_timer_set_periodic() argument
143 __asm9260_timer_shutdown(evt); in asm9260_timer_set_periodic()
169 struct clock_event_device *evt = dev_id; in asm9260_timer_interrupt() local
171 evt->event_handler(evt); in asm9260_timer_interrupt()
Dmxs_timer.c92 static int timrotv1_set_next_event(unsigned long evt, in timrotv1_set_next_event() argument
96 __raw_writel(evt, mxs_timrot_base + HW_TIMROT_TIMCOUNTn(0)); in timrotv1_set_next_event()
101 static int timrotv2_set_next_event(unsigned long evt, in timrotv2_set_next_event() argument
105 __raw_writel(evt, mxs_timrot_base + HW_TIMROT_FIXED_COUNTn(0)); in timrotv2_set_next_event()
112 struct clock_event_device *evt = dev_id; in mxs_timer_interrupt() local
115 evt->event_handler(evt); in mxs_timer_interrupt()
137 static int mxs_shutdown(struct clock_event_device *evt) in mxs_shutdown() argument
144 static int mxs_set_oneshot(struct clock_event_device *evt) in mxs_set_oneshot() argument
146 if (clockevent_state_oneshot(evt)) in mxs_set_oneshot()
/kernel/linux/linux-5.10/fs/hmdfs/comm/
Dnode_cb.c19 static inline bool hmdfs_is_valid_node_evt(int evt) in hmdfs_is_valid_node_evt() argument
21 return (evt >= 0 && evt < NODE_EVT_NR); in hmdfs_is_valid_node_evt()
24 static const char *hmdfs_evt_str(int evt) in hmdfs_evt_str() argument
26 if (!hmdfs_is_valid_node_evt(evt)) in hmdfs_evt_str()
28 return evt_str_tbl[evt]; in hmdfs_evt_str()
48 int evt = desc[i].evt; in hmdfs_node_add_evt_cb() local
51 if (!hmdfs_is_valid_node_evt(evt)) in hmdfs_node_add_evt_cb()
54 list_add_tail(&desc[i].list, &cb_head[evt][sync]); in hmdfs_node_add_evt_cb()
58 void hmdfs_node_call_evt_cb(struct hmdfs_peer *conn, int evt, bool sync, in hmdfs_node_call_evt_cb() argument
64 conn->owner, conn->device_id, hmdfs_evt_str(evt), in hmdfs_node_call_evt_cb()
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/wil6210/
Dwmi.c771 struct wmi_ready_event *evt = d; in wmi_evt_ready() local
775 wil->fw_version, le32_to_cpu(evt->sw_version), in wmi_evt_ready()
776 evt->mac, evt->numof_additional_mids); in wmi_evt_ready()
777 if (evt->numof_additional_mids + 1 < wil->max_vifs) { in wmi_evt_ready()
787 evt->rfc_read_calib_result); in wmi_evt_ready()
788 wil->fw_calib_result = evt->rfc_read_calib_result; in wmi_evt_ready()
793 evt->max_assoc_sta > 0) { in wmi_evt_ready()
794 fw_max_assoc_sta = evt->max_assoc_sta; in wmi_evt_ready()
958 struct wmi_connect_event *evt = d; in wmi_evt_connect() local
969 if (len < sizeof(*evt)) { in wmi_evt_connect()
[all …]
/kernel/linux/linux-5.10/drivers/scsi/ibmvscsi/
Dibmvfc.c147 static void ibmvfc_trc_start(struct ibmvfc_event *evt) in ibmvfc_trc_start() argument
149 struct ibmvfc_host *vhost = evt->vhost; in ibmvfc_trc_start()
150 struct ibmvfc_cmd *vfc_cmd = &evt->iu.cmd; in ibmvfc_trc_start()
151 struct ibmvfc_mad_common *mad = &evt->iu.mad_common; in ibmvfc_trc_start()
155 entry->evt = evt; in ibmvfc_trc_start()
157 entry->fmt = evt->crq.format; in ibmvfc_trc_start()
181 static void ibmvfc_trc_end(struct ibmvfc_event *evt) in ibmvfc_trc_end() argument
183 struct ibmvfc_host *vhost = evt->vhost; in ibmvfc_trc_end()
184 struct ibmvfc_cmd *vfc_cmd = &evt->xfer_iu->cmd; in ibmvfc_trc_end()
185 struct ibmvfc_mad_common *mad = &evt->xfer_iu->mad_common; in ibmvfc_trc_end()
[all …]
/kernel/linux/linux-5.10/arch/xtensa/kernel/
Dtime.c56 struct clock_event_device evt; member
83 static int ccount_timer_shutdown(struct clock_event_device *evt) in ccount_timer_shutdown() argument
86 container_of(evt, struct ccount_timer, evt); in ccount_timer_shutdown()
89 disable_irq_nosync(evt->irq); in ccount_timer_shutdown()
95 static int ccount_timer_set_oneshot(struct clock_event_device *evt) in ccount_timer_set_oneshot() argument
98 container_of(evt, struct ccount_timer, evt); in ccount_timer_set_oneshot()
101 enable_irq(evt->irq); in ccount_timer_set_oneshot()
108 .evt = {
120 struct clock_event_device *evt = &this_cpu_ptr(&ccount_timer)->evt; in timer_interrupt() local
123 evt->event_handler(evt); in timer_interrupt()
[all …]
/kernel/linux/linux-5.10/arch/x86/xen/
Dtime.c200 static int xen_timerop_shutdown(struct clock_event_device *evt) in xen_timerop_shutdown() argument
209 struct clock_event_device *evt) in xen_timerop_set_next_event() argument
211 WARN_ON(!clockevent_state_oneshot(evt)); in xen_timerop_set_next_event()
240 static int xen_vcpuop_shutdown(struct clock_event_device *evt) in xen_vcpuop_shutdown() argument
253 static int xen_vcpuop_set_oneshot(struct clock_event_device *evt) in xen_vcpuop_set_oneshot() argument
265 struct clock_event_device *evt) in xen_vcpuop_set_next_event() argument
271 WARN_ON(!clockevent_state_oneshot(evt)); in xen_vcpuop_set_next_event()
306 struct clock_event_device evt; member
309 static DEFINE_PER_CPU(struct xen_clock_event_device, xen_clock_events) = { .evt.irq = -1 };
313 struct clock_event_device *evt = this_cpu_ptr(&xen_clock_events.evt); in xen_timer_interrupt() local
[all …]
/kernel/linux/linux-5.10/arch/openrisc/kernel/
Dtime.c68 struct clock_event_device *evt = in openrisc_clockevent_init() local
75 evt->broadcast = tick_broadcast; in openrisc_clockevent_init()
77 evt->name = "openrisc_timer_clockevent", in openrisc_clockevent_init()
78 evt->features = CLOCK_EVT_FEAT_ONESHOT, in openrisc_clockevent_init()
79 evt->rating = 300, in openrisc_clockevent_init()
80 evt->set_next_event = openrisc_timer_set_next_event, in openrisc_clockevent_init()
82 evt->cpumask = cpumask_of(cpu); in openrisc_clockevent_init()
85 clockevents_config_and_register(evt, cpuinfo->clock_frequency, in openrisc_clockevent_init()
113 struct clock_event_device *evt = in timer_interrupt() local
122 evt->event_handler(evt); in timer_interrupt()
/kernel/linux/linux-5.10/arch/x86/kernel/
Dhpet.c25 struct clock_event_device evt; member
71 struct hpet_channel *clockevent_to_channel(struct clock_event_device *evt) in clockevent_to_channel() argument
73 return container_of(evt, struct hpet_channel, evt); in clockevent_to_channel()
296 static int hpet_clkevt_set_state_periodic(struct clock_event_device *evt) in hpet_clkevt_set_state_periodic() argument
298 unsigned int channel = clockevent_to_channel(evt)->num; in hpet_clkevt_set_state_periodic()
303 delta = ((uint64_t)(NSEC_PER_SEC / HZ)) * evt->mult; in hpet_clkevt_set_state_periodic()
304 delta >>= evt->shift; in hpet_clkevt_set_state_periodic()
327 static int hpet_clkevt_set_state_oneshot(struct clock_event_device *evt) in hpet_clkevt_set_state_oneshot() argument
329 unsigned int channel = clockevent_to_channel(evt)->num; in hpet_clkevt_set_state_oneshot()
340 static int hpet_clkevt_set_state_shutdown(struct clock_event_device *evt) in hpet_clkevt_set_state_shutdown() argument
[all …]
/kernel/linux/linux-5.10/net/tipc/
Dsubscr.c45 struct tipc_event *evt = &sub->evt; in tipc_sub_send_event() local
49 tipc_evt_write(evt, event, event); in tipc_sub_send_event()
50 tipc_evt_write(evt, found_lower, found_lower); in tipc_sub_send_event()
51 tipc_evt_write(evt, found_upper, found_upper); in tipc_sub_send_event()
52 tipc_evt_write(evt, port.ref, port); in tipc_sub_send_event()
53 tipc_evt_write(evt, port.node, node); in tipc_sub_send_event()
54 tipc_topsrv_queue_evt(sub->net, sub->conid, event, evt); in tipc_sub_send_event()
80 struct tipc_subscr *s = &sub->evt.s; in tipc_sub_report_overlap()
106 struct tipc_subscr *s = &sub->evt.s; in tipc_sub_timeout()
153 memcpy(&sub->evt.s, s, sizeof(*s)); in tipc_sub_subscribe()
[all …]
/kernel/linux/linux-5.10/arch/arm/mach-spear/
Dtime.c69 static int clockevent_next_event(unsigned long evt,
96 static inline void timer_shutdown(struct clock_event_device *evt) in timer_shutdown() argument
105 static int spear_shutdown(struct clock_event_device *evt) in spear_shutdown() argument
107 timer_shutdown(evt); in spear_shutdown()
112 static int spear_set_oneshot(struct clock_event_device *evt) in spear_set_oneshot() argument
117 timer_shutdown(evt); in spear_set_oneshot()
126 static int spear_set_periodic(struct clock_event_device *evt) in spear_set_periodic() argument
132 timer_shutdown(evt); in spear_set_periodic()
175 struct clock_event_device *evt = &clkevt; in spear_timer_interrupt() local
179 evt->event_handler(evt); in spear_timer_interrupt()
/kernel/linux/linux-5.10/arch/nios2/kernel/
Dtime.c52 to_nios2_clkevent(struct clock_event_device *evt) in to_nios2_clkevent() argument
54 return container_of(evt, struct nios2_clockevent_dev, ced); in to_nios2_clkevent()
162 struct clock_event_device *evt) in nios2_timer_set_next_event() argument
164 struct nios2_clockevent_dev *nios2_ced = to_nios2_clkevent(evt); in nios2_timer_set_next_event()
171 static int nios2_timer_shutdown(struct clock_event_device *evt) in nios2_timer_shutdown() argument
173 struct nios2_clockevent_dev *nios2_ced = to_nios2_clkevent(evt); in nios2_timer_shutdown()
180 static int nios2_timer_set_periodic(struct clock_event_device *evt) in nios2_timer_set_periodic() argument
183 struct nios2_clockevent_dev *nios2_ced = to_nios2_clkevent(evt); in nios2_timer_set_periodic()
191 static int nios2_timer_resume(struct clock_event_device *evt) in nios2_timer_resume() argument
193 struct nios2_clockevent_dev *nios2_ced = to_nios2_clkevent(evt); in nios2_timer_resume()
[all …]

1234567891011