blob: d0d9be25ed937f1d567411b46cc4c47c416bb90b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef _ASM_X86_PLATFORM_H
#define _ASM_X86_PLATFORM_H
/**
* struct x86_init_resources - platform specific resource related ops
* @probe_roms: probe BIOS roms
* @reserve_resources: reserve the standard resources for the
* platform
*
*/
struct x86_init_resources {
void (*probe_roms)(void);
void (*reserve_resources)(void);
};
/**
* struct x86_init_ops - functions for platform specific setup
*
*/
struct x86_init_ops {
struct x86_init_resources resources;
};
extern struct x86_init_ops x86_init;
extern void x86_init_noop(void);
#endif
|