summaryrefslogtreecommitdiffstats
path: root/include/common.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-12-28 10:45:11 -0700
committerTom Rini <trini@konsulko.com>2020-01-17 17:53:52 -0500
commitb1b86099a6e2ca383e8afec9878eb67a7c2298b5 (patch)
tree49c140baf7b8c8eac363516a1238dfd9a2c4d035 /include/common.h
parent4d979bfdbc9dd9c4fcfc824754c9bd2109261a2b (diff)
downloadu-boot-b1b86099a6e2ca383e8afec9878eb67a7c2298b5.tar.gz
u-boot-b1b86099a6e2ca383e8afec9878eb67a7c2298b5.tar.xz
u-boot-b1b86099a6e2ca383e8afec9878eb67a7c2298b5.zip
common: Collect all the header files together
There are many header files included here. Put them all together since the blank lines are not useful. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/include/common.h b/include/common.h
index 32999f9cbf..388d98a1db 100644
--- a/include/common.h
+++ b/include/common.h
@@ -14,7 +14,6 @@
#define __COMMON_H_ 1
#ifndef __ASSEMBLY__ /* put C only stuff in this section */
-
#include <config.h>
#include <errno.h>
#include <time.h>
@@ -30,43 +29,20 @@
#include <stdarg.h>
#include <stdio.h>
#include <linux/kernel.h>
-
#include <part.h>
#include <flash.h>
#include <image.h>
-
#include <log.h>
-
#include <asm/u-boot.h> /* boot information for Linux kernel */
#include <asm/global_data.h> /* global data used for startup functions */
-
-/* startup functions, used in:
- * common/board_f.c
- * common/init/board_init.c
- * common/board_r.c
- * common/board_info.c
- */
#include <init.h>
-
#include <display_options.h>
-
-/* lib/uuid.c */
#include <uuid.h>
-
-/* lib/vsprintf.c */
#include <vsprintf.h>
-
-/* lib/net_utils.c */
#include <net.h>
-
#include <bootstage.h>
-
-#else /* __ASSEMBLY__ */
-
#endif /* __ASSEMBLY__ */
-/* Put only stuff here that the assembler can digest */
-
/* Pull in stuff for the build system */
#ifdef DO_DEPS_ONLY
# include <env_internal.h>