1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2014 Synopsys, Inc. All rights reserved.
4 */
5
6#ifndef __ASM_ARC_U_BOOT_ARC_H__
7#define __ASM_ARC_U_BOOT_ARC_H__
8
9int arch_early_init_r(void);
10
11void	board_init_f_r_trampoline(ulong) __attribute__ ((noreturn));
12void	board_init_f_r(void) __attribute__ ((noreturn));
13
14#endif	/* __ASM_ARC_U_BOOT_ARC_H__ */
15