From: Alon Mizrahi <[email protected]>

These defines are 64-bit defines so they need ull suffix.

Signed-off-by: Alon Mizrahi <[email protected]>
Reviewed-by: Oded Gabbay <[email protected]>
Signed-off-by: Oded Gabbay <[email protected]>
---
 drivers/misc/habanalabs/include/common/cpucp_if.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/misc/habanalabs/include/common/cpucp_if.h 
b/drivers/misc/habanalabs/include/common/cpucp_if.h
index 554f82271d5f..00bd9b392f93 100644
--- a/drivers/misc/habanalabs/include/common/cpucp_if.h
+++ b/drivers/misc/habanalabs/include/common/cpucp_if.h
@@ -317,13 +317,13 @@ enum cpucp_packet_id {
 #define CPUCP_PKT_CTL_OPCODE_MASK      0x1FFF0000
 
 #define CPUCP_PKT_RES_PLL_OUT0_SHIFT   0
-#define CPUCP_PKT_RES_PLL_OUT0_MASK    0x000000000000FFFF
+#define CPUCP_PKT_RES_PLL_OUT0_MASK    0x000000000000FFFFull
 #define CPUCP_PKT_RES_PLL_OUT1_SHIFT   16
-#define CPUCP_PKT_RES_PLL_OUT1_MASK    0x00000000FFFF0000
+#define CPUCP_PKT_RES_PLL_OUT1_MASK    0x00000000FFFF0000ull
 #define CPUCP_PKT_RES_PLL_OUT2_SHIFT   32
-#define CPUCP_PKT_RES_PLL_OUT2_MASK    0x0000FFFF00000000
+#define CPUCP_PKT_RES_PLL_OUT2_MASK    0x0000FFFF00000000ull
 #define CPUCP_PKT_RES_PLL_OUT3_SHIFT   48
-#define CPUCP_PKT_RES_PLL_OUT3_MASK    0xFFFF000000000000
+#define CPUCP_PKT_RES_PLL_OUT3_MASK    0xFFFF000000000000ull
 
 struct cpucp_packet {
        union {
-- 
2.17.1

Reply via email to