From 96d4bc11c0d66f9b7d2017f2b22f10edd1c5c13a Mon Sep 17 00:00:00 2001 From: Masayuki Ishikawa Date: Fri, 5 Feb 2021 10:39:27 +0900 Subject: [PATCH] arch: s32k1xx: Fix style warnings in s32k1xx_edma.c Summary: - This commit fixes style warnings in s32k1xx_edma.c Impact: - None Testing: - N/A Signed-off-by: Masayuki Ishikawa --- arch/arm/src/s32k1xx/s32k1xx_edma.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/arch/arm/src/s32k1xx/s32k1xx_edma.c b/arch/arm/src/s32k1xx/s32k1xx_edma.c index f8ed7b747d..64d1ebb04b 100644 --- a/arch/arm/src/s32k1xx/s32k1xx_edma.c +++ b/arch/arm/src/s32k1xx/s32k1xx_edma.c @@ -92,7 +92,9 @@ # define EDMA_ALIGN_UP(n) (((n) + EDMA_ALIGN_MASK) & ~EDMA_ALIGN_MASK) #else -/* Special alignment is not required in this case, but we will align to 8-bytes */ +/* Special alignment is not required in this case, + * but we will align to 8-bytes + */ # define EDMA_ALIGN 8 # define EDMA_ALIGN_MASK 7