diff options
Diffstat (limited to 'roms/u-boot/arch/arc/include/asm/u-boot-arc.h')
-rw-r--r-- | roms/u-boot/arch/arc/include/asm/u-boot-arc.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/roms/u-boot/arch/arc/include/asm/u-boot-arc.h b/roms/u-boot/arch/arc/include/asm/u-boot-arc.h new file mode 100644 index 000000000..dd2c0949c --- /dev/null +++ b/roms/u-boot/arch/arc/include/asm/u-boot-arc.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2014 Synopsys, Inc. All rights reserved. + */ + +#ifndef __ASM_ARC_U_BOOT_ARC_H__ +#define __ASM_ARC_U_BOOT_ARC_H__ + +int arch_early_init_r(void); + +void board_init_f_r_trampoline(ulong) __attribute__ ((noreturn)); +void board_init_f_r(void) __attribute__ ((noreturn)); + +#endif /* __ASM_ARC_U_BOOT_ARC_H__ */ |