commit | 89509904c0de8580b957eb419e9601f575bb9ff0 | [log] [tgz] |
---|---|---|
author | Sathees Balya <sathees.balya@arm.com> | Thu Sep 27 14:41:02 2018 +0100 |
committer | Sathees Balya <sathees.balya@arm.com> | Thu Oct 11 17:01:07 2018 +0100 |
tree | 145d54b6ed9ab3c96b6aeac75da369f9da0fc8a9 | |
parent | f7a18268ad2201176ffc882b43c900f9d025bde1 [diff] [blame] |
plat/arm: Fix misra warnings in platform code Change-Id: Ica944acc474a099219d50b041cfaeabd4f3d362f Signed-off-by: Sathees Balya <sathees.balya@arm.com>
diff --git a/plat/arm/board/fvp/fvp_security.c b/plat/arm/board/fvp/fvp_security.c index a6c9227..028522c 100644 --- a/plat/arm/board/fvp/fvp_security.c +++ b/plat/arm/board/fvp/fvp_security.c
@@ -21,6 +21,6 @@ * configurations, those would be configured here. */ - if (get_arm_config()->flags & ARM_CONFIG_HAS_TZC) + if ((get_arm_config()->flags & ARM_CONFIG_HAS_TZC) != 0U) arm_tzc400_setup(NULL); }