Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/microblaze/include/asm/sections.h
26442 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* Copyright (C) 2008-2009 Michal Simek <[email protected]>
4
* Copyright (C) 2008-2009 PetaLogix
5
* Copyright (C) 2006 Atmark Techno, Inc.
6
*/
7
8
#ifndef _ASM_MICROBLAZE_SECTIONS_H
9
#define _ASM_MICROBLAZE_SECTIONS_H
10
11
#include <asm-generic/sections.h>
12
13
# ifndef __ASSEMBLY__
14
extern char _ssbss[], _esbss[];
15
extern unsigned long __ivt_start[], __ivt_end[];
16
17
extern u32 _fdt_start[], _fdt_end[];
18
19
# endif /* !__ASSEMBLY__ */
20
#endif /* _ASM_MICROBLAZE_SECTIONS_H */
21
22