diff options
Diffstat (limited to 'arch/x86/include/asm/x86_init.h')
-rw-r--r-- | arch/x86/include/asm/x86_init.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h index 14d11071675f..75e9e68d635f 100644 --- a/arch/x86/include/asm/x86_init.h +++ b/arch/x86/include/asm/x86_init.h | |||
@@ -2,10 +2,20 @@ | |||
2 | #define _ASM_X86_PLATFORM_H | 2 | #define _ASM_X86_PLATFORM_H |
3 | 3 | ||
4 | /** | 4 | /** |
5 | * struct x86_init_resources - platform specific resource related ops | ||
6 | * @probe_roms: probe BIOS roms | ||
7 | * | ||
8 | */ | ||
9 | struct x86_init_resources { | ||
10 | void (*probe_roms)(void); | ||
11 | }; | ||
12 | |||
13 | /** | ||
5 | * struct x86_init_ops - functions for platform specific setup | 14 | * struct x86_init_ops - functions for platform specific setup |
6 | * | 15 | * |
7 | */ | 16 | */ |
8 | struct x86_init_ops { | 17 | struct x86_init_ops { |
18 | struct x86_init_resources resources; | ||
9 | }; | 19 | }; |
10 | 20 | ||
11 | extern struct x86_init_ops x86_init; | 21 | extern struct x86_init_ops x86_init; |