uboot/arch/arm/include/asm/u-boot.h
<<
>>
Prefs
   1/*
   2 * (C) Copyright 2002
   3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
   4 * Marius Groeger <mgroeger@sysgo.de>
   5 *
   6 * (C) Copyright 2002
   7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
   8 * Alex Zuepke <azu@sysgo.de>
   9 *
  10 * SPDX-License-Identifier:     GPL-2.0+
  11 *
  12 ********************************************************************
  13 * NOTE: This header file defines an interface to U-Boot. Including
  14 * this (unmodified) header file in another file is considered normal
  15 * use of U-Boot, and does *not* fall under the heading of "derived
  16 * work".
  17 ********************************************************************
  18 */
  19
  20#ifndef _U_BOOT_H_
  21#define _U_BOOT_H_      1
  22
  23/* Use the generic board which requires a unified bd_info */
  24#include <asm-generic/u-boot.h>
  25
  26/* For image.h:image_check_target_arch() */
  27#ifndef CONFIG_ARM64
  28#define IH_ARCH_DEFAULT IH_ARCH_ARM
  29#else
  30#define IH_ARCH_DEFAULT IH_ARCH_ARM64
  31#endif
  32
  33#endif  /* _U_BOOT_H_ */
  34