Unverified Commit a1d1d24b authored by Antonio Niño Díaz's avatar Antonio Niño Díaz Committed by GitHub
Browse files

Merge pull request #1781 from dtwlin/m2

spd: trusty: trusty_setup should bail on unknown image
parents 72106f82 d19c3438
......@@ -420,7 +420,8 @@ static int32_t trusty_setup(void)
} else if (instr >> 8 == 0xd53810U || instr >> 16 == 0x9400U) {
INFO("trusty: Found 64 bit image\n");
} else {
NOTICE("trusty: Found unknown image, 0x%x\n", instr);
ERROR("trusty: Found unknown image, 0x%x\n", instr);
return -1;
}
SET_PARAM_HEAD(ep_info, PARAM_EP, VERSION_1, SECURE | EP_ST_ENABLE);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment