Subversion Repositories Kolibri OS

Rev

Rev 6934 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6934 Rev 6936
Line 80... Line 80...
80
 
80
 
81
/**
81
/**
82
 * struct x86_init_timers - platform specific timer setup
82
 * struct x86_init_timers - platform specific timer setup
83
 * @setup_perpcu_clockev:	set up the per cpu clock event device for the
83
 * @setup_perpcu_clockev:	set up the per cpu clock event device for the
84
 *				boot cpu
-
 
85
 * @tsc_pre_init:		platform function called before TSC init
84
 *				boot cpu
86
 * @timer_init:			initialize the platform timer (default PIT/HPET)
85
 * @timer_init:			initialize the platform timer (default PIT/HPET)
87
 * @wallclock_init:		init the wallclock device
86
 * @wallclock_init:		init the wallclock device
88
 */
87
 */
89
struct x86_init_timers {
88
struct x86_init_timers {
90
	void (*setup_percpu_clockev)(void);
-
 
91
	void (*tsc_pre_init)(void);
89
	void (*setup_percpu_clockev)(void);
92
	void (*timer_init)(void);
90
	void (*timer_init)(void);
93
	void (*wallclock_init)(void);
91
	void (*wallclock_init)(void);
Line 94... Line 92...
94
};
92
};