diff options
author | Simon Glass <sjg@chromium.org> | 2023-07-15 21:39:15 -0600 |
---|---|---|
committer | Bin Meng <bmeng@tinylab.org> | 2023-07-17 17:23:15 +0800 |
commit | f52a7f05371e581d703bba6a724783aeb0ce5ac4 (patch) | |
tree | da321dbe5ac0c16cda97d10becd62393fdb8ad9e /board/sandbox | |
parent | f9ebfd7c7acebd3d28a3be1d33e30c6f88a05302 (diff) | |
download | u-boot-f52a7f05371e581d703bba6a724783aeb0ce5ac4.tar.gz u-boot-f52a7f05371e581d703bba6a724783aeb0ce5ac4.tar.bz2 u-boot-f52a7f05371e581d703bba6a724783aeb0ce5ac4.zip |
sandbox: Correct header order in board file
Fix the header order in this file.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'board/sandbox')
-rw-r--r-- | board/sandbox/sandbox.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/sandbox/sandbox.c b/board/sandbox/sandbox.c index c7b6cb78ff..54c119daee 100644 --- a/board/sandbox/sandbox.c +++ b/board/sandbox/sandbox.c @@ -11,16 +11,16 @@ #include <efi.h> #include <efi_loader.h> #include <env_internal.h> +#include <extension_board.h> #include <init.h> #include <led.h> +#include <malloc.h> #include <os.h> #include <asm/global_data.h> #include <asm/test.h> #include <asm/u-boot-sandbox.h> #include <linux/kernel.h> -#include <malloc.h> - -#include <extension_board.h> +#include <linux/sizes.h> /* * Pointer to initial global data area |