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 8112ed786287..024cf3c1fd82 100644 --- a/arch/x86/include/asm/x86_init.h +++ b/arch/x86/include/asm/x86_init.h | |||
@@ -113,16 +113,16 @@ struct x86_cpuinit_ops { | |||
113 | 113 | ||
114 | /** | 114 | /** |
115 | * struct x86_platform_ops - platform specific runtime functions | 115 | * struct x86_platform_ops - platform specific runtime functions |
116 | * @is_untracked_pat_range exclude from PAT logic | ||
117 | * @calibrate_tsc: calibrate TSC | 116 | * @calibrate_tsc: calibrate TSC |
118 | * @get_wallclock: get time from HW clock like RTC etc. | 117 | * @get_wallclock: get time from HW clock like RTC etc. |
119 | * @set_wallclock: set time back to HW clock | 118 | * @set_wallclock: set time back to HW clock |
119 | * @is_untracked_pat_range exclude from PAT logic | ||
120 | */ | 120 | */ |
121 | struct x86_platform_ops { | 121 | struct x86_platform_ops { |
122 | int (*is_untracked_pat_range)(u64 start, u64 end); | ||
123 | unsigned long (*calibrate_tsc)(void); | 122 | unsigned long (*calibrate_tsc)(void); |
124 | unsigned long (*get_wallclock)(void); | 123 | unsigned long (*get_wallclock)(void); |
125 | int (*set_wallclock)(unsigned long nowtime); | 124 | int (*set_wallclock)(unsigned long nowtime); |
125 | bool (*is_untracked_pat_range)(u64 start, u64 end); | ||
126 | }; | 126 | }; |
127 | 127 | ||
128 | extern struct x86_init_ops x86_init; | 128 | extern struct x86_init_ops x86_init; |