u-boot.h 640 B

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