diff options
Diffstat (limited to 'arch/x86/include/asm/x86_init.h')
| -rw-r--r-- | arch/x86/include/asm/x86_init.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h index c090af10ac7..38155f66714 100644 --- a/arch/x86/include/asm/x86_init.h +++ b/arch/x86/include/asm/x86_init.h @@ -156,7 +156,6 @@ struct x86_cpuinit_ops {  /**   * struct x86_platform_ops - platform specific runtime functions   * @calibrate_tsc:		calibrate TSC - * @wallclock_init:		init the wallclock device   * @get_wallclock:		get time from HW clock like RTC etc.   * @set_wallclock:		set time back to HW clock   * @is_untracked_pat_range	exclude from PAT logic @@ -164,10 +163,10 @@ struct x86_cpuinit_ops {   * @i8042_detect		pre-detect if i8042 controller exists   * @save_sched_clock_state:	save state for sched_clock() on suspend   * @restore_sched_clock_state:	restore state for sched_clock() on resume + * @apic_post_init:		adjust apic if neeeded   */  struct x86_platform_ops {  	unsigned long (*calibrate_tsc)(void); -	void (*wallclock_init)(void);  	unsigned long (*get_wallclock)(void);  	int (*set_wallclock)(unsigned long nowtime);  	void (*iommu_shutdown)(void); @@ -177,6 +176,7 @@ struct x86_platform_ops {  	int (*i8042_detect)(void);  	void (*save_sched_clock_state)(void);  	void (*restore_sched_clock_state)(void); +	void (*apic_post_init)(void);  };  struct pci_dev;  |