Merge pull request #1425 from jts-arm/panic

Panic in BL1 when TB_FW_CONFIG is invalid
This commit is contained in:
Dimitris Papastamos 2018-06-19 15:09:43 +01:00 committed by GitHub
commit 73b4214bf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -61,8 +61,8 @@ void arm_load_tb_fw_config(void)
err = arm_dyn_tb_fw_cfg_init((void *)config_base, &tb_fw_node);
if (err < 0) {
WARN("Invalid TB_FW_CONFIG loaded\n");
return;
ERROR("Invalid TB_FW_CONFIG loaded\n");
panic();
}
err = arm_dyn_get_disable_auth((void *)config_base, tb_fw_node, &disable_auth);