diff options
author | Mario Six <mario.six@gdsys.cc> | 2018-08-06 10:23:39 +0200 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-09-18 00:01:18 -0600 |
commit | 138181a550651efc28f25ddef9cc293792259c45 (patch) | |
tree | 0b9d412035668a552a332af27d98d43a9d5b5010 | |
parent | 2c21749d7118b66b98cbab3f6301576726e06525 (diff) | |
download | u-boot-138181a550651efc28f25ddef9cc293792259c45.tar.gz u-boot-138181a550651efc28f25ddef9cc293792259c45.tar.xz u-boot-138181a550651efc28f25ddef9cc293792259c45.zip |
common: board_f: Sort includes
Includes should be sorted.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Mario Six <mario.six@gdsys.cc>
-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 3871839a2d..afafec5e4d 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -11,8 +11,8 @@ #include <common.h> #include <console.h> -#include <environment.h> #include <dm.h> +#include <environment.h> #include <fdtdec.h> #include <fs.h> #include <i2c.h> |