diff mbox

[U-Boot,v2,2/4] dtc/fdtdump: include libfdt_env.h prior to fdt.h

Message ID 1352941199-19393-2-git-send-email-kim.phillips@freescale.com
State Superseded
Delegated to: Jerry Van Baren
Headers show

Commit Message

Kim Phillips Nov. 15, 2012, 12:59 a.m. UTC
in order to get the upcoming fdt type definitions.

Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
---
v2: added David's Acked-by.

 fdtdump.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/fdtdump.c b/fdtdump.c
index 207a46d..8a7ae72 100644
--- a/fdtdump.c
+++ b/fdtdump.c
@@ -8,8 +8,8 @@ 
 #include <string.h>
 #include <ctype.h>
 
-#include <fdt.h>
 #include <libfdt_env.h>
+#include <fdt.h>
 
 #include "util.h"