From: Masahiro Yamada Date: Sat, 1 Aug 2015 07:03:25 +0000 (+0900) Subject: lib: fdt: fix indent of #ifdef..#endif conditional X-Git-Tag: KARO-TX6-2015-09-18~932 X-Git-Url: https://git.karo-electronics.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=8e520c384388e9f9048210de2792f6b038484c80 lib: fdt: fix indent of #ifdef..#endif conditional Match the depth of indentation between #ifdef and #endif for better readability. Signed-off-by: Masahiro Yamada Acked-by: Simon Glass --- diff --git a/lib/fdtdec.c b/lib/fdtdec.c index a954051f7e..48667efcb5 100644 --- a/lib/fdtdec.c +++ b/lib/fdtdec.c @@ -1167,7 +1167,7 @@ int fdtdec_setup(void) # else /* FDT is at end of image */ gd->fdt_blob = (ulong *)&_end; -#endif +# endif # elif defined(CONFIG_OF_HOSTFILE) if (sandbox_read_fdt_from_file()) { puts("Failed to read control FDT\n");