1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16#ifndef __ASM_SECTIONS_H
17#define __ASM_SECTIONS_H
18
19#include <asm-generic/sections.h>
20
21extern char __alt_instructions[], __alt_instructions_end[];
22extern char __exception_text_start[], __exception_text_end[];
23extern char __hibernate_exit_text_start[], __hibernate_exit_text_end[];
24extern char __hyp_idmap_text_start[], __hyp_idmap_text_end[];
25extern char __hyp_text_start[], __hyp_text_end[];
26extern char __idmap_text_start[], __idmap_text_end[];
27extern char __initdata_begin[], __initdata_end[];
28extern char __inittext_begin[], __inittext_end[];
29extern char __irqentry_text_start[], __irqentry_text_end[];
30extern char __mmuoff_data_start[], __mmuoff_data_end[];
31extern char __entry_tramp_text_start[], __entry_tramp_text_end[];
32
33#endif
34