diff options
author | Ilias Apalodimas <ilias.apalodimas@linaro.org> | 2020-10-22 01:04:20 +0300 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-10-27 21:13:15 +0100 |
commit | 19763ea0d235643ec33f8e3615a5c9943ecdc36b (patch) | |
tree | 7b9c445604549cde90c09f4cc2d07e9d2d599b44 /lib/efi_loader/efi_boottime.c | |
parent | d3d6afae3c56af4f7b68d777468d509b3d6bdb55 (diff) | |
download | u-boot-19763ea0d235643ec33f8e3615a5c9943ecdc36b.tar.gz |
efi_loader: Sort header file ordering
Order header files according to https://www.denx.de/wiki/U-Boot/CodingStyle
Suggested-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib/efi_loader/efi_boottime.c')
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index bf78176217..2896c3ea5a 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -6,18 +6,17 @@ */ #include <common.h> +#include <bootm.h> #include <div64.h> #include <efi_loader.h> #include <irq_func.h> #include <log.h> #include <malloc.h> -#include <time.h> -#include <linux/libfdt_env.h> -#include <u-boot/crc.h> -#include <bootm.h> #include <pe.h> +#include <time.h> #include <u-boot/crc.h> #include <watchdog.h> +#include <linux/libfdt_env.h> DECLARE_GLOBAL_DATA_PTR; |