mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

This corrects MISRA c2012-7.2 violation: A "u" or "U" suffix shall be applied to all integer constants that are represented in an unsigned type. Signed-off-by: Yann Gautier <yann.gautier@st.com> Change-Id: I92b394572528e7179a314bbad4a032fd65053861
16 lines
392 B
C
16 lines
392 B
C
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
/*
|
|
* Copyright (c) 2021, Linaro Limited
|
|
* Copyright (c) 2022, STMicroelectronics - All Rights Reserved
|
|
*/
|
|
|
|
#ifndef STM32MP_EFI_H
|
|
#define STM32MP_EFI_H
|
|
|
|
#include <drivers/partition/efi.h>
|
|
|
|
#define STM32MP_FIP_GUID \
|
|
EFI_GUID(0x19d5df83U, 0x11b0U, 0x457bU, \
|
|
0xbeU, 0x2cU, 0x75U, 0x59U, 0xc1U, 0x31U, 0x42U, 0xa5U)
|
|
|
|
#endif /* STM32MP_EFI_H */
|