From e67b2a4a39931f3fc9771663d759b15a4a043f77 Mon Sep 17 00:00:00 2001 From: Ha Duong Quang Date: Mon, 30 Sep 2024 23:21:44 +0700 Subject: [PATCH] s32: soc: s32z270: crypto: remove suffix on number of MU instances, channels Remove 'u' suffix from macros so that they can be used with LISTIFY. Signed-off-by: Ha Duong Quang --- s32/soc/s32z270/include/Hse_Ip_Cfg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/s32/soc/s32z270/include/Hse_Ip_Cfg.h b/s32/soc/s32z270/include/Hse_Ip_Cfg.h index f0816142b..49957ec11 100644 --- a/s32/soc/s32z270/include/Hse_Ip_Cfg.h +++ b/s32/soc/s32z270/include/Hse_Ip_Cfg.h @@ -59,10 +59,10 @@ extern "C"{ #define HSE_IP_MU_7 ((uint8)7U) /* Max number of MU instances */ -#define HSE_IP_NUM_OF_MU_INSTANCES (8U) +#define HSE_IP_NUM_OF_MU_INSTANCES (8) /* Max number of channels per MU interface */ -#define HSE_IP_NUM_OF_CHANNELS_PER_MU (16U) +#define HSE_IP_NUM_OF_CHANNELS_PER_MU (16) /* Pre-processor switch to enable/disable development error detection for Hse Ip API */ #define HSE_IP_DEV_ERROR_DETECT (STD_OFF)