diff mbox

[U-Boot,v3,14/16] main: Correct header order

Message ID 1361895069-7343-15-git-send-email-sjg@chromium.org
State Deferred
Delegated to: Tom Rini
Headers show

Commit Message

Simon Glass Feb. 26, 2013, 4:11 p.m. UTC
The headers are a bit out of order, so fix them.

Signed-off-by: Simon Glass <sjg@chromium.org>
---
Changes in v3: None
Changes in v2: None

 common/main.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/common/main.c b/common/main.c
index cd068e7..a464620 100644
--- a/common/main.c
+++ b/common/main.c
@@ -28,16 +28,15 @@ 
 /* #define	DEBUG	*/
 
 #include <common.h>
-#include <watchdog.h>
 #include <command.h>
 #include <fdtdec.h>
 #include <fdt_support.h>
 #include <hush.h>
 #include <malloc.h>
 #include <menu.h>
-#include <version.h>
-
 #include <post.h>
+#include <version.h>
+#include <watchdog.h>
 #include <linux/ctype.h>
 
 DECLARE_GLOBAL_DATA_PTR;