363737d664
The standard (see BSS_SECTION() in <asm-generic/vmlinux.lds.h> and <asm-generic/sections.h>) symbol for the end of BSS is __bss_stop. This allows to remove all local declarations that have been added to several architectures just to please CONFIG_MTD_UCLINUX. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Paul Mundt <lethal@linux-sh.org> Acked-by: Mike Frysinger <vapier@gentoo.org> Acked-by: Michal Simek <monstr@monstr.eu> Acked-by: Greg Ungerer <gerg@uclinux.org>
24 lines
669 B
C
24 lines
669 B
C
/*
|
|
* Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
|
|
* Copyright (C) 2008-2009 PetaLogix
|
|
* Copyright (C) 2006 Atmark Techno, Inc.
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*/
|
|
|
|
#ifndef _ASM_MICROBLAZE_SECTIONS_H
|
|
#define _ASM_MICROBLAZE_SECTIONS_H
|
|
|
|
#include <asm-generic/sections.h>
|
|
|
|
# ifndef __ASSEMBLY__
|
|
extern char _ssbss[], _esbss[];
|
|
extern unsigned long __ivt_start[], __ivt_end[];
|
|
extern char _etext[], _stext[];
|
|
|
|
extern u32 _fdt_start[], _fdt_end[];
|
|
|
|
# endif /* !__ASSEMBLY__ */
|
|
#endif /* _ASM_MICROBLAZE_SECTIONS_H */
|