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.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h
index 07c37bd879f8..ceffbf358fc0 100644
--- a/arch/x86/include/asm/x86_init.h
+++ b/arch/x86/include/asm/x86_init.h
@@ -57,6 +57,14 @@ struct x86_init_irqs {
57}; 57};
58 58
59/** 59/**
60 * struct x86_init_oem - oem platform specific customizing functions
61 * @arch_setup: platform specific architecure setup
62 */
63struct x86_init_oem {
64 void (*arch_setup)(void);
65};
66
67/**
60 * struct x86_init_ops - functions for platform specific setup 68 * struct x86_init_ops - functions for platform specific setup
61 * 69 *
62 */ 70 */
@@ -64,6 +72,7 @@ struct x86_init_ops {
64 struct x86_init_resources resources; 72 struct x86_init_resources resources;
65 struct x86_init_mpparse mpparse; 73 struct x86_init_mpparse mpparse;
66 struct x86_init_irqs irqs; 74 struct x86_init_irqs irqs;
75 struct x86_init_oem oem;
67}; 76};
68 77
69extern struct x86_init_ops x86_init; 78extern struct x86_init_ops x86_init;