ARM: move #ifdef to match the error handling code
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Fri, 17 Jun 2016 12:51:48 +0000 (21:51 +0900)
committerTom Rini <trini@konsulko.com>
Fri, 24 Jun 2016 21:23:13 +0000 (17:23 -0400)
commit6441e3deb429f218c05e6a71fbbb89e7519e2e52
tree3a2a6ddc1b74d8034801a3b34a79bc956a96ba5e
parentafedf5488de99925f00ead847e40d7ba0d508f0e
ARM: move #ifdef to match the error handling code

Match the #ifdef ... #endif and the code,

   ret = do_something();
   if (ret)
           return ret;

This will make it easier to add more #ifdef'ed code.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
arch/arm/lib/bootm-fdt.c