mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
a187559e3d
Correct spelling of "U-Boot" shall be used in all written text (documentation, comments in source files etc.). Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Heiko Schocher <hs@denx.de> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Minkyu Kang <mk7.kang@samsung.com>
23 lines
434 B
C
23 lines
434 B
C
/*
|
|
* U-Boot - cpu.h
|
|
*
|
|
* Copyright (c) 2005-2007 Analog Devices Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _CPU_H_
|
|
#define _CPU_H_
|
|
|
|
#include <command.h>
|
|
|
|
void board_reset(void) __attribute__((__weak__));
|
|
void bfin_dump(struct pt_regs *reg);
|
|
void bfin_panic(struct pt_regs *reg);
|
|
void dump(struct pt_regs *regs);
|
|
|
|
asmlinkage void trap(void);
|
|
asmlinkage void evt_nmi(void);
|
|
asmlinkage void evt_default(void);
|
|
|
|
#endif
|