diff options
| author | Simon Glass <[email protected]> | 2022-03-04 08:42:58 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-03-10 08:28:36 -0500 |
| commit | d41b703f453fbd539b0efde4238b1b02f9853870 (patch) | |
| tree | 7536faf98be4ba286035f6eef75ba764d4781d77 | |
| parent | 0bf4e0bb935e5c7fc016142e0228882610ecbf39 (diff) | |
sandbox: start: Sort the header files
These header files don't follow the correct order. Fix this.
Signed-off-by: Simon Glass <[email protected]>
| -rw-r--r-- | arch/sandbox/cpu/start.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c index 13b0731ec3a..12aace9a202 100644 --- a/arch/sandbox/cpu/start.c +++ b/arch/sandbox/cpu/start.c @@ -4,14 +4,13 @@ */ #include <common.h> +#include <cli.h> #include <command.h> -#include <dm/root.h> #include <efi_loader.h> #include <errno.h> #include <init.h> #include <log.h> #include <os.h> -#include <cli.h> #include <sort.h> #include <asm/getopt.h> #include <asm/global_data.h> @@ -19,6 +18,7 @@ #include <asm/malloc.h> #include <asm/sections.h> #include <asm/state.h> +#include <dm/root.h> #include <linux/ctype.h> DECLARE_GLOBAL_DATA_PTR; |
