diff mbox series

[U-Boot,v4,10/17] common: board_f: Sort includes

Message ID 20180806082346.21211-10-mario.six@gdsys.cc
State Accepted
Commit 138181a550651efc28f25ddef9cc293792259c45
Delegated to: Simon Glass
Headers show
Series [U-Boot,v4,01/17] ram: Add driver for MPC83xx | expand

Commit Message

Mario Six Aug. 6, 2018, 8:23 a.m. UTC
Includes should be sorted.

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Mario Six <mario.six@gdsys.cc>
---

Notes:
    v3 -> v4:
    No changes
    
    v2 -> v3:
    No changes
    
    v1 -> v2:
    New in v2

 common/board_f.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass Sept. 28, 2018, 3:55 p.m. UTC | #1
On 6 August 2018 at 01:23, Mario Six <mario.six@gdsys.cc> wrote:
> Includes should be sorted.
>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> Signed-off-by: Mario Six <mario.six@gdsys.cc>
> ---
>
> Notes:
>     v3 -> v4:
>     No changes
>
>     v2 -> v3:
>     No changes
>
>     v1 -> v2:
>     New in v2
>
>  common/board_f.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to u-boot-dm, and now in mainline, thanks!
diff mbox series

Patch

diff --git a/common/board_f.c b/common/board_f.c
index 3871839a2db..afafec5e4d0 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>