uboot/include/common.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0+ */
   2/*
   3 * Common header file for U-Boot
   4 *
   5 * This file still includes quite a few headers that should be included
   6 * individually as needed. Patches to remove things are welcome.
   7 *
   8 * (C) Copyright 2000-2009
   9 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  10 */
  11
  12#ifndef __COMMON_H_
  13#define __COMMON_H_     1
  14
  15#ifndef __ASSEMBLY__            /* put C only stuff in this section */
  16#include <config.h>
  17#include <errno.h>
  18#include <time.h>
  19#include <asm-offsets.h>
  20#include <linux/bitops.h>
  21#include <linux/bug.h>
  22#include <linux/delay.h>
  23#include <linux/types.h>
  24#include <linux/printk.h>
  25#include <linux/string.h>
  26#include <linux/stringify.h>
  27#include <asm/ptrace.h>
  28#include <stdarg.h>
  29#include <stdio.h>
  30#include <linux/kernel.h>
  31#include <part.h>
  32#include <flash.h>
  33#include <image.h>
  34#include <log.h>
  35#include <asm/u-boot.h> /* boot information for Linux kernel */
  36#include <asm/global_data.h>    /* global data used for startup functions */
  37#include <init.h>
  38#include <display_options.h>
  39#include <uuid.h>
  40#include <vsprintf.h>
  41#include <net.h>
  42#include <bootstage.h>
  43#endif  /* __ASSEMBLY__ */
  44
  45/* Pull in stuff for the build system */
  46#ifdef DO_DEPS_ONLY
  47# include <env_internal.h>
  48#endif
  49
  50#endif  /* __COMMON_H_ */
  51