xref: /OK3568_Linux_fs/u-boot/arch/mips/include/asm/u-boot.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * (C) Copyright 2003
3*4882a593Smuzhiyun  * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * SPDX-License-Identifier:	GPL-2.0+
6*4882a593Smuzhiyun  *
7*4882a593Smuzhiyun  ********************************************************************
8*4882a593Smuzhiyun  * NOTE: This header file defines an interface to U-Boot. Including
9*4882a593Smuzhiyun  * this (unmodified) header file in another file is considered normal
10*4882a593Smuzhiyun  * use of U-Boot, and does *not* fall under the heading of "derived
11*4882a593Smuzhiyun  * work".
12*4882a593Smuzhiyun  ********************************************************************
13*4882a593Smuzhiyun  */
14*4882a593Smuzhiyun 
15*4882a593Smuzhiyun #ifndef _U_BOOT_H_
16*4882a593Smuzhiyun #define _U_BOOT_H_	1
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun /* Use the generic board which requires a unified bd_info */
19*4882a593Smuzhiyun #include <asm-generic/u-boot.h>
20*4882a593Smuzhiyun #include <asm/u-boot-mips.h>
21*4882a593Smuzhiyun 
22*4882a593Smuzhiyun /* For image.h:image_check_target_arch() */
23*4882a593Smuzhiyun #define IH_ARCH_DEFAULT IH_ARCH_MIPS
24*4882a593Smuzhiyun 
25*4882a593Smuzhiyun #endif	/* _U_BOOT_H_ */
26