diff options
author | Dimitris Papastamos <dimitris.papastamos@arm.com> | 2018-03-29 13:20:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-29 13:20:05 +0100 |
commit | 6ab136c258ed4616d8cf1ebf1c5a4a74b75d35bc (patch) | |
tree | 59d6d3499fff950a6a5e18593f2166cd9d0c6565 /include | |
parent | 875a85aae6b0c9ae411ed899f827c4bbc0703438 (diff) | |
parent | 185a23ffa3b6fc007021ac9bbab2213c63911c0a (diff) | |
download | platform_external_arm-trusted-firmware-6ab136c258ed4616d8cf1ebf1c5a4a74b75d35bc.tar.gz platform_external_arm-trusted-firmware-6ab136c258ed4616d8cf1ebf1c5a4a74b75d35bc.tar.bz2 platform_external_arm-trusted-firmware-6ab136c258ed4616d8cf1ebf1c5a4a74b75d35bc.zip |
Merge pull request #1313 from jonathanwright-ARM/jw/MISRA-switch-statements
Fix switch statements to comply with MISRA rules
Diffstat (limited to 'include')
-rw-r--r-- | include/lib/pmf/pmf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/lib/pmf/pmf.h b/include/lib/pmf/pmf.h index a3d32263d..2320760ea 100644 --- a/include/lib/pmf/pmf.h +++ b/include/lib/pmf/pmf.h @@ -37,8 +37,8 @@ /* * Defines for PMF SMC function ids. */ -#define PMF_SMC_GET_TIMESTAMP_32 0x82000010 -#define PMF_SMC_GET_TIMESTAMP_64 0xC2000010 +#define PMF_SMC_GET_TIMESTAMP_32 0x82000010u +#define PMF_SMC_GET_TIMESTAMP_64 0xC2000010u #define PMF_NUM_SMC_CALLS 2 /* |