Commit e9ced6f2 authored by danh-arm's avatar danh-arm Committed by GitHub
Browse files

Merge pull request #825 from dp-arm/dp/simplify-cond

tbbr: Simplify conditional
parents bac75297 f3ded378
......@@ -60,7 +60,7 @@ int plat_set_nv_ctr2(void *cookie, const auth_img_desc_t *img_desc,
* has been signed with the ROT key. Non Trusted NV counter
* updates are unconditional.
*/
if (!trusted_nv_ctr || (trusted_nv_ctr && img_desc->parent == NULL))
if (!trusted_nv_ctr || img_desc->parent == NULL)
return plat_set_nv_ctr(cookie, nv_ctr);
/*
......
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