diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-08-01 16:03:25 +0900 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-08-05 08:42:39 -0600 |
commit | 3bd926cc7e31a8b18fb96f639f15021d21c3fc07 (patch) | |
tree | aac80edf6bd6536723c053f507e3ff411020b116 /lib/fdtdec.c | |
parent | 31dd0a9a76f22427c34812d8f5cdf6408e803156 (diff) | |
download | u-boot-imx-3bd926cc7e31a8b18fb96f639f15021d21c3fc07.zip u-boot-imx-3bd926cc7e31a8b18fb96f639f15021d21c3fc07.tar.gz u-boot-imx-3bd926cc7e31a8b18fb96f639f15021d21c3fc07.tar.bz2 |
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 <yamada.masahiro@socionext.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/fdtdec.c')
-rw-r--r-- | lib/fdtdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fdtdec.c b/lib/fdtdec.c index a954051..48667ef 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"); |