summaryrefslogtreecommitdiff
path: root/plat/common
diff options
context:
space:
mode:
authordp-arm <dimitris.papastamos@arm.com>2017-01-31 10:54:39 +0000
committerdp-arm <dimitris.papastamos@arm.com>2017-01-31 10:55:04 +0000
commitf3ded3782c565856b6e0174fd3fdaeee1b8dadcf (patch)
treebe379e2ee48145101cb0e3701d011509bd92a4c8 /plat/common
parentc38b36d8a069f29b98f11a6dcdc3631317d2a992 (diff)
tbbr: Simplify conditional
These are equivalent so use the reduced form. Change-Id: I40ca097411b9abab69985b8e4dbccf7582eae49e Signed-off-by: dp-arm <dimitris.papastamos@arm.com>
Diffstat (limited to 'plat/common')
-rw-r--r--plat/common/tbbr/plat_tbbr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plat/common/tbbr/plat_tbbr.c b/plat/common/tbbr/plat_tbbr.c
index 475564a6..fde4d544 100644
--- a/plat/common/tbbr/plat_tbbr.c
+++ b/plat/common/tbbr/plat_tbbr.c
@@ -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);
/*