aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/x86_init.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/include/asm/x86_init.h')
-rw-r--r--arch/x86/include/asm/x86_init.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h
index 6c084f2a6c3..10b297b1881 100644
--- a/arch/x86/include/asm/x86_init.h
+++ b/arch/x86/include/asm/x86_init.h
@@ -2,6 +2,14 @@
2#define _ASM_X86_PLATFORM_H 2#define _ASM_X86_PLATFORM_H
3 3
4/** 4/**
5 * struct x86_init_mpparse - platform specific mpparse ops
6 * @mpc_record: platform specific mpc record accounting
7 */
8struct x86_init_mpparse {
9 void (*mpc_record)(unsigned int mode);
10};
11
12/**
5 * struct x86_init_resources - platform specific resource related ops 13 * struct x86_init_resources - platform specific resource related ops
6 * @probe_roms: probe BIOS roms 14 * @probe_roms: probe BIOS roms
7 * @reserve_resources: reserve the standard resources for the 15 * @reserve_resources: reserve the standard resources for the
@@ -22,11 +30,13 @@ struct x86_init_resources {
22 * 30 *
23 */ 31 */
24struct x86_init_ops { 32struct x86_init_ops {
25 struct x86_init_resources resources; 33 struct x86_init_resources resources;
34 struct x86_init_mpparse mpparse;
26}; 35};
27 36
28extern struct x86_init_ops x86_init; 37extern struct x86_init_ops x86_init;
29 38
30extern void x86_init_noop(void); 39extern void x86_init_noop(void);
40extern void x86_init_uint_noop(unsigned int unused);
31 41
32#endif 42#endif