James Morse | ee78fdc | 2016-08-24 18:27:28 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 ARM Limited |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ |
| 16 | #ifndef __ASM_SECTIONS_H |
| 17 | #define __ASM_SECTIONS_H |
| 18 | |
| 19 | #include <asm-generic/sections.h> |
| 20 | |
| 21 | extern char __alt_instructions[], __alt_instructions_end[]; |
| 22 | extern char __exception_text_start[], __exception_text_end[]; |
| 23 | extern char __hibernate_exit_text_start[], __hibernate_exit_text_end[]; |
| 24 | extern char __hyp_idmap_text_start[], __hyp_idmap_text_end[]; |
| 25 | extern char __hyp_text_start[], __hyp_text_end[]; |
| 26 | extern char __idmap_text_start[], __idmap_text_end[]; |
Ard Biesheuvel | 2ebe088b | 2017-03-09 21:52:03 +0100 | [diff] [blame] | 27 | extern char __initdata_begin[], __initdata_end[]; |
| 28 | extern char __inittext_begin[], __inittext_end[]; |
James Morse | ee78fdc | 2016-08-24 18:27:28 +0100 | [diff] [blame] | 29 | extern char __irqentry_text_start[], __irqentry_text_end[]; |
James Morse | b611303 | 2016-08-24 18:27:29 +0100 | [diff] [blame] | 30 | extern char __mmuoff_data_start[], __mmuoff_data_end[]; |
James Morse | ee78fdc | 2016-08-24 18:27:28 +0100 | [diff] [blame] | 31 | |
| 32 | #endif /* __ASM_SECTIONS_H */ |