xref: /OK3568_Linux_fs/u-boot/arch/mips/include/asm/sections.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * Copyright (c) 2012 The Chromium OS Authors.
3*4882a593Smuzhiyun  * SPDX-License-Identifier:	GPL-2.0+
4*4882a593Smuzhiyun  */
5*4882a593Smuzhiyun 
6*4882a593Smuzhiyun #ifndef __ASM_MIPS_SECTIONS_H
7*4882a593Smuzhiyun #define __ASM_MIPS_SECTIONS_H
8*4882a593Smuzhiyun 
9*4882a593Smuzhiyun #include <asm-generic/sections.h>
10*4882a593Smuzhiyun 
11*4882a593Smuzhiyun /**
12*4882a593Smuzhiyun  * __rel_start: Relocation data generated by the mips-relocs tool
13*4882a593Smuzhiyun  *
14*4882a593Smuzhiyun  * See arch/mips/lib/reloc.c for details on the format & use of this data.
15*4882a593Smuzhiyun  */
16*4882a593Smuzhiyun extern uint8_t __rel_start[];
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun #endif
19