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/nuttx.git
commit 73c032d594146bc04b8158c34ba305c74d68b5fb Author: chao an <[email protected]> AuthorDate: Fri Oct 25 18:42:03 2024 +0800 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 <[email protected]> --- 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 };
