From baeeaddff4840028d627f21af64e6397da88a058 Mon Sep 17 00:00:00 2001 From: Maheedhar Bollapalli Date: Fri, 25 Oct 2024 05:17:33 +0000 Subject: [PATCH] fix(versal-net): add unsigned suffix to match data type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This corrects the MISRA violation C2012-7.2: A ā€œuā€ or ā€œUā€ suffix shall be applied to all integer constants that are represented in an unsigned type. Appended "u" suffix to integer constant to represent it as unsigned type. Change-Id: I08b055134d6bd0380cca1e5b6ee527d6045a76c5 Signed-off-by: Maheedhar Bollapalli --- plat/xilinx/versal_net/sip_svc_setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plat/xilinx/versal_net/sip_svc_setup.c b/plat/xilinx/versal_net/sip_svc_setup.c index bf06e2c63..21657ab96 100644 --- a/plat/xilinx/versal_net/sip_svc_setup.c +++ b/plat/xilinx/versal_net/sip_svc_setup.c @@ -37,7 +37,7 @@ /* SiP Service UUID */ DEFINE_SVC_UUID2(versal_net_sip_uuid, - 0x80d4c25a, 0xebaf, 0x11eb, 0x94, 0x68, + 0x80d4c25au, 0xebaf, 0x11eb, 0x94, 0x68, 0x0b, 0x4e, 0x3b, 0x8f, 0xc3, 0x60); /**