aboutsummaryrefslogtreecommitdiff
path: root/include/bl1
diff options
context:
space:
mode:
authorJimmy Brisson <jimmy.brisson@arm.com>2020-08-05 15:33:40 -0500
committerSandrine Bailleux <sandrine.bailleux@arm.com>2020-08-14 11:36:05 +0000
commite1d5be56ba0f159534f20137401676f6ea697828 (patch)
tree997c8b387f5f2a51726a4369e6d24f5e7b7e7c00 /include/bl1
parentd74c6b833616a9e3398352990af78098ea14cffa (diff)
downloadtrusted-firmware-a-e1d5be56ba0f159534f20137401676f6ea697828.tar.gz
Specify signed-ness of constants
We relyed on the default signed-ness of constants, which is usually signed. This can create MISRA violations, such as: bl1/bl1_main.c:257:[MISRA C-2012 10.8 (required)] Cast of composite expression off essential type signed to essential type unsigned These constants were only used as unsigned, so this patch makes them explicitly unsigned. Change-Id: I5f1310c881e936077035fbb1d5ffb449b45de3ad Signed-off-by: Jimmy Brisson <jimmy.brisson@arm.com>
Diffstat (limited to 'include/bl1')
-rw-r--r--include/bl1/bl1.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bl1/bl1.h b/include/bl1/bl1.h
index e6447f25bf..21d3ae7b7c 100644
--- a/include/bl1/bl1.h
+++ b/include/bl1/bl1.h
@@ -26,8 +26,8 @@
/*
* BL1 SMC version
*/
-#define BL1_SMC_MAJOR_VER 0x0
-#define BL1_SMC_MINOR_VER 0x1
+#define BL1_SMC_MAJOR_VER UL(0x0)
+#define BL1_SMC_MINOR_VER UL(0x1)
/*
* Defines for FWU SMC function ids.