]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/common.h
configs: at91: sama7g54_curiosity: Add initial default configs
[thirdparty/u-boot.git] / include / common.h
CommitLineData
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, wd@denx.de.
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
WD
19#include <linux/types.h>
20#include <linux/string.h>
e2211743 21#include <stdarg.h>
7fea7b1a 22#include <stdio.h>
cba1da49 23#include <linux/kernel.h>
c83bf6a2 24#include <asm/u-boot.h> /* boot information for Linux kernel */
9785c905 25#include <vsprintf.h>
2a6713b0 26#endif /* __ASSEMBLY__ */
fcd3c87e 27
c3eb3fe4
MF
28/* Pull in stuff for the build system */
29#ifdef DO_DEPS_ONLY
f3998fdc 30# include <env_internal.h>
c3eb3fe4
MF
31#endif
32
e2211743 33#endif /* __COMMON_H_ */