mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-03 15:55:38 +00:00
16 lines
236 B
C
16 lines
236 B
C
![]() |
#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
|