| Submitter | Simon Glass |
|---|---|
| Date | Feb. 26, 2013, 4:11 p.m. |
| Message ID | <1361895069-7343-15-git-send-email-sjg@chromium.org> |
| Download | mbox | patch |
| Permalink | /patch/223336/ |
| State | Deferred |
| Delegated to: | Tom Rini |
| Headers | show |
Comments
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;
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(-)