fiptool: remove always true conditional
Masahiro Yamada authored
The conditional

  if (desc != NULL)
          ...

is always true here because we assert it 6 lines above:

  assert(desc != NULL);

Remove the if-conditional and concatenate the printf() calls.
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
67973fb4