diff options
author | Simon Glass <sjg@chromium.org> | 2017-03-31 08:40:35 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-05 16:36:55 -0400 |
commit | 056285fd454362ec1aa5e8bfedff38d9ef7a9fb1 (patch) | |
tree | f76c9297377f938eebe3701b18ec2698918b80c5 /common/board_f.c | |
parent | 479312233cbc5f8b57ba13b2762a4cde1f2edd52 (diff) |
board_f: Move errno.h down to the bottom
This is to keep the header file order consistent.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'common/board_f.c')
-rw-r--r-- | common/board_f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/board_f.c b/common/board_f.c index b153aff052..e483b4b06c 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -45,7 +45,6 @@ #include <trace.h> #include <video.h> #include <watchdog.h> -#include <linux/errno.h> #include <asm/io.h> #include <asm/sections.h> #if defined(CONFIG_X86) || defined(CONFIG_ARC) @@ -55,6 +54,7 @@ #include <asm/relocate.h> #endif #include <dm/root.h> +#include <linux/errno.h> /* * Pointer to initial global data area |