Home
last modified time | relevance | path

Searched refs:levt (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/directfb/directfb/
H A D0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch37 - devt->timestamp = levt->time;
38 + devt->timestamp.tv_sec = levt->input_event_sec;
39 + devt->timestamp.tv_usec = levt->input_event_usec;
41 switch (levt->type) {
47 - devt->timestamp = levt->time;
48 + devt->timestamp.tv_sec = levt->input_event_sec;
49 + devt->timestamp.tv_usec = levt->input_event_usec;
52 switch (levt->code) {
60 if (!levt) {
66 + tval.tv_sec = levt->input_event_sec;
[all …]
/OK3568_Linux_fs/kernel/arch/x86/kernel/apic/
H A Dapic.c613 struct clock_event_device *levt = this_cpu_ptr(&lapic_events); in setup_APIC_timer() local
621 memcpy(levt, &lapic_clockevent, sizeof(*levt)); in setup_APIC_timer()
622 levt->cpumask = cpumask_of(smp_processor_id()); in setup_APIC_timer()
625 levt->name = "lapic-deadline"; in setup_APIC_timer()
626 levt->features &= ~(CLOCK_EVT_FEAT_PERIODIC | in setup_APIC_timer()
628 levt->set_next_event = lapic_next_deadline; in setup_APIC_timer()
629 clockevents_config_and_register(levt, in setup_APIC_timer()
633 clockevents_register_device(levt); in setup_APIC_timer()
642 struct clock_event_device *levt = this_cpu_ptr(&lapic_events); in __lapic_update_tsc_freq() local
647 clockevents_update_freq(levt, tsc_khz * (1000 / TSC_DIVISOR)); in __lapic_update_tsc_freq()
[all …]