blob: 14d11071675f87a74036d46b1cb1b396be1dc4ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _ASM_X86_PLATFORM_H
#define _ASM_X86_PLATFORM_H
/**
* struct x86_init_ops - functions for platform specific setup
*
*/
struct x86_init_ops {
};
extern struct x86_init_ops x86_init;
extern void x86_init_noop(void);
#endif
|