mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
9bef24d0de
Starting from arc-2016.03 GNU tools linker properly works with symbols defined in linker script and so external declarations are no longer required, dump them. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
15 lines
290 B
C
15 lines
290 B
C
/*
|
|
* Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __ASM_ARC_SECTIONS_H
|
|
#define __ASM_ARC_SECTIONS_H
|
|
|
|
#include <asm-generic/sections.h>
|
|
|
|
extern ulong __ivt_start;
|
|
extern ulong __ivt_end;
|
|
|
|
#endif /* __ASM_ARC_SECTIONS_H */
|