]> Git Repo - J-u-boot.git/blob - include/common.h
common: Drop asm_offsets.h from common header
[J-u-boot.git] / include / common.h
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, [email protected].
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 <linux/bitops.h>
20 #include <linux/bug.h>
21 #include <linux/delay.h>
22 #include <linux/types.h>
23 #include <linux/printk.h>
24 #include <linux/string.h>
25 #include <linux/stringify.h>
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <linux/kernel.h>
29 #include <asm/u-boot.h> /* boot information for Linux kernel */
30 #include <asm/global_data.h>    /* global data used for startup functions */
31 #include <display_options.h>
32 #include <vsprintf.h>
33 #endif  /* __ASSEMBLY__ */
34
35 /* Pull in stuff for the build system */
36 #ifdef DO_DEPS_ONLY
37 # include <env_internal.h>
38 #endif
39
40 #endif  /* __COMMON_H_ */
This page took 0.028482 seconds and 4 git commands to generate.