diff options
author | Jean-Jacques Hiblot <jjhiblot@ti.com> | 2017-09-15 12:57:31 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-10-05 21:31:04 -0400 |
commit | 035d64025c3e32a2f372981f86fc69255feeb2b2 (patch) | |
tree | 107d16cf798b37a534f73de7605202d93a5525a2 | |
parent | f52bdf4b678defea2341aa4b68736e6978180222 (diff) |
fdtdec: sort include files
Sort include files in accordance to U-Boot coding style.
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
-rw-r--r-- | lib/fdtdec.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/fdtdec.c b/lib/fdtdec.c index 630e0402ee..f26d2eb91b 100644 --- a/lib/fdtdec.c +++ b/lib/fdtdec.c @@ -4,16 +4,16 @@ */ #ifndef USE_HOSTCC -#include <boot_fit.h> #include <common.h> +#include <boot_fit.h> #include <dm.h> +#include <dm/of_extra.h> #include <errno.h> -#include <serial.h> -#include <libfdt.h> -#include <fdt_support.h> #include <fdtdec.h> +#include <fdt_support.h> +#include <libfdt.h> +#include <serial.h> #include <asm/sections.h> -#include <dm/of_extra.h> #include <linux/ctype.h> DECLARE_GLOBAL_DATA_PTR; |