77ef50a522
This patch is the result of an automatic script that consolidates the format of all the headers in include/asm-x86/. The format: 1. No leading underscore. Names with leading underscores are reserved. 2. Pathname components are separated by two underscores. So we can distinguish between mm_types.h and mm/types.h. 3. Everything except letters and numbers are turned into single underscores. Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
21 lines
471 B
C
21 lines
471 B
C
#ifndef ASM_X86__TRAMPOLINE_H
|
|
#define ASM_X86__TRAMPOLINE_H
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
/*
|
|
* Trampoline 80x86 program as an array.
|
|
*/
|
|
extern const unsigned char trampoline_data [];
|
|
extern const unsigned char trampoline_end [];
|
|
extern unsigned char *trampoline_base;
|
|
|
|
extern unsigned long init_rsp;
|
|
extern unsigned long initial_code;
|
|
|
|
#define TRAMPOLINE_BASE 0x6000
|
|
extern unsigned long setup_trampoline(void);
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* ASM_X86__TRAMPOLINE_H */
|