]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
e2211743 | 2 | /* |
ec1fa185 SG |
3 | * Common header file for U-Boot |
4 | * | |
addc3763 SG |
5 | * This file still includes quite a few headers that should be included |
6 | * individually as needed. Patches to remove things are welcome. | |
ec1fa185 | 7 | * |
3b74e7ec | 8 | * (C) Copyright 2000-2009 |
e2211743 | 9 | * Wolfgang Denk, DENX Software Engineering, [email protected]. |
e2211743 WD |
10 | */ |
11 | ||
12 | #ifndef __COMMON_H_ | |
d0b8feef | 13 | #define __COMMON_H_ 1 |
e2211743 | 14 | |
fcd3c87e | 15 | #ifndef __ASSEMBLY__ /* put C only stuff in this section */ |
e2211743 | 16 | #include <config.h> |
2307ea40 | 17 | #include <errno.h> |
a7b81769 | 18 | #include <time.h> |
e2211743 | 19 | #include <linux/types.h> |
b44b3026 | 20 | #include <linux/printk.h> |
e2211743 | 21 | #include <linux/string.h> |
e2211743 | 22 | #include <stdarg.h> |
7fea7b1a | 23 | #include <stdio.h> |
cba1da49 | 24 | #include <linux/kernel.h> |
c83bf6a2 | 25 | #include <asm/u-boot.h> /* boot information for Linux kernel */ |
e2211743 | 26 | #include <asm/global_data.h> /* global data used for startup functions */ |
2ea09c83 | 27 | #include <display_options.h> |
9785c905 | 28 | #include <vsprintf.h> |
2a6713b0 | 29 | #endif /* __ASSEMBLY__ */ |
fcd3c87e | 30 | |
c3eb3fe4 MF |
31 | /* Pull in stuff for the build system */ |
32 | #ifdef DO_DEPS_ONLY | |
f3998fdc | 33 | # include <env_internal.h> |
c3eb3fe4 MF |
34 | #endif |
35 | ||
e2211743 | 36 | #endif /* __COMMON_H_ */ |