2019-06-03 05:44:50 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2016-08-24 17:27:28 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 ARM Limited
|
|
|
|
*/
|
|
|
|
#ifndef __ASM_SECTIONS_H
|
|
|
|
#define __ASM_SECTIONS_H
|
|
|
|
|
|
|
|
#include <asm-generic/sections.h>
|
|
|
|
|
|
|
|
extern char __alt_instructions[], __alt_instructions_end[];
|
|
|
|
extern char __exception_text_start[], __exception_text_end[];
|
|
|
|
extern char __hibernate_exit_text_start[], __hibernate_exit_text_end[];
|
|
|
|
extern char __hyp_idmap_text_start[], __hyp_idmap_text_end[];
|
|
|
|
extern char __hyp_text_start[], __hyp_text_end[];
|
|
|
|
extern char __idmap_text_start[], __idmap_text_end[];
|
2017-03-09 20:52:03 +00:00
|
|
|
extern char __initdata_begin[], __initdata_end[];
|
|
|
|
extern char __inittext_begin[], __inittext_end[];
|
2016-08-24 17:27:28 +00:00
|
|
|
extern char __irqentry_text_start[], __irqentry_text_end[];
|
2016-08-24 17:27:29 +00:00
|
|
|
extern char __mmuoff_data_start[], __mmuoff_data_end[];
|
2018-01-08 15:38:17 +00:00
|
|
|
extern char __entry_tramp_text_start[], __entry_tramp_text_end[];
|
2016-08-24 17:27:28 +00:00
|
|
|
|
|
|
|
#endif /* __ASM_SECTIONS_H */
|