s32: s32z27: remove suffix on number of SIUL2 channels

The external interrupts shim driver uses the
SIUL2_ICU_IP_NUM_OF_CHANNELS macro together with listify, therefore the
integer literal suffix must be removed in order for the macros to
concatenate correctly. This way we can keep the shim driver generic
enough when other SoC is supported and there is no need to redefine the
macro there.

Signed-off-by: Manuel Arguelles <manuel.arguelles@nxp.com>
This commit is contained in:
Manuel Arguelles 2022-11-09 17:16:59 +07:00 committed by David Leach
parent d41d310f65
commit 138742f665
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ extern "C"{
#define SIUL2_ICU_IP_NUM_OF_INSTANCES (6U)
/** @brief The number of channels available on each instance */
#define SIUL2_ICU_IP_NUM_OF_CHANNELS (8U)
#define SIUL2_ICU_IP_NUM_OF_CHANNELS (8)
/** @brief Adds or removes all services related to the de-initialization functionality. */
#define SIUL2_ICU_IP_DEINIT_API (STD_ON)