This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 96d4bc11c0d66f9b7d2017f2b22f10edd1c5c13a Author: Masayuki Ishikawa <[email protected]> AuthorDate: Fri Feb 5 10:39:27 2021 +0900 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 <[email protected]> --- 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 f8ed7b7..64d1ebb 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
