Minor cleanup.
diff --git a/libfdt/Makefile b/libfdt/Makefile
index 418ad6b..dc41137 100644
--- a/libfdt/Makefile
+++ b/libfdt/Makefile
@@ -25,7 +25,7 @@
 
 LIB	= $(obj)libfdt.a
 
-SOBJS	= 
+SOBJS	=
 
 COBJS	= fdt.o  fdt_ro.o  fdt_rw.o  fdt_strerror.o  fdt_sw.o  fdt_wip.o
 
@@ -44,4 +44,3 @@
 sinclude $(obj).depend
 
 #########################################################################
-
diff --git a/libfdt/fdt_ro.c b/libfdt/fdt_ro.c
index 4b20553..ce01dc7 100644
--- a/libfdt/fdt_ro.c
+++ b/libfdt/fdt_ro.c
@@ -23,12 +23,11 @@
 
 #include "libfdt_internal.h"
 
-#define CHECK_HEADER(fdt) \
-	{ \
-		int err; \
-		if ((err = _fdt_check_header(fdt)) != 0) \
-			return err; \
-	}
+#define CHECK_HEADER(fdt)	{ \
+	int err; \
+	if ((err = _fdt_check_header(fdt)) != 0) \
+		return err; \
+}
 
 static int offset_streq(const void *fdt, int offset,
 			const char *s, int len)
@@ -255,7 +254,7 @@
 	} while (level >= 0);
 
 	err = -FDT_ERR_NOTFOUND;
- fail:
+fail:
 	if (lenp)
 		*lenp = err;
 	return NULL;
@@ -330,4 +329,3 @@
 
 	return tag;
 }
-