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