| Submitter | Simon Glass |
|---|---|
| Date | Feb. 24, 2013, 5:26 p.m. |
| Message ID | <1361726773-18639-14-git-send-email-sjg@chromium.org> |
| Download | mbox | patch |
| Permalink | /patch/222791/ |
| State | Superseded, archived |
| Headers | show |
Comments
Patch
diff --git a/common/main.c b/common/main.c index 40a79b7..905d0c2 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 v2: None common/main.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)