tools: imx8mimage: fix HDMI/FIT parsing

Add missed break for HDMI entry.
And moving FIT parsing earlier, because it does not have parameter,
it will not runs into CFG_REG_SIZE.

Signed-off-by: Peng Fan <peng.fan@nxp.com>
Reviewed-by: Ye Li <ye.li@nxp.com>
Reviewed-by: Lukasz Majewski <lukma@denx.de>
This commit is contained in:
Peng Fan 2019-08-06 10:07:26 +00:00 committed by Stefano Babic
parent 39ebb4187d
commit 4d655bfe03

View File

@ -99,8 +99,6 @@ static void parse_cfg_cmd(int32_t cmd, char *token, char *name, int lineno)
break;
case CMD_SIGNED_HDMI:
signed_hdmi = token;
case CMD_FIT:
using_fit = 1;
break;
case CMD_DDR_FW:
/* Do nothing */
@ -120,6 +118,11 @@ static void parse_cfg_fld(int32_t *cmd, char *token,
name, lineno, token);
exit(EXIT_FAILURE);
}
switch (*cmd) {
case CMD_FIT:
using_fit = 1;
break;
}
break;
case CFG_REG_SIZE:
parse_cfg_cmd(*cmd, token, name, lineno);