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