From 73c032d594146bc04b8158c34ba305c74d68b5fb Mon Sep 17 00:00:00 2001 From: chao an Date: Fri, 25 Oct 2024 18:42:03 +0800 Subject: [PATCH] tools/nxstyle: add phy62xx/uart.c into style white list To skip the style issue: arch/arm/src/phy62xx/uart.c:59:15: error: Mixed case identifier found arch/arm/src/phy62xx/uart.c:64:2: error: Mixed case identifier found arch/arm/src/phy62xx/uart.c:65:2: error: Mixed case identifier found arch/arm/src/phy62xx/uart.c:70:2: error: Mixed case identifier found arch/arm/src/phy62xx/uart.c:71:2: error: Mixed case identifier found arch/arm/src/phy62xx/uart.c:75:2: error: Mixed case identifier found arch/arm/src/phy62xx/uart.c:77:7: error: Mixed case identifier found Signed-off-by: chao an --- tools/nxstyle.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/nxstyle.c b/tools/nxstyle.c index dba9123e87..68c8a0b0d0 100644 --- a/tools/nxstyle.c +++ b/tools/nxstyle.c @@ -642,6 +642,12 @@ static const char *g_white_files[] = "arm-acle-compat.h", "arm_asm.h", + + /* Skip Mixed case + * arch/arm/src/phy62xx/uart.c:1229:13: error: Mixed case identifier found + */ + + "phy62xx/uart.c", NULL };