From 09aede87ee1865840809345d00c88e8bc9c7b6bc Mon Sep 17 00:00:00 2001 From: chao an Date: Sun, 18 Feb 2024 15:52:30 +0800 Subject: [PATCH] tools/nxstyle: add infineon prefix into ignore list add infineon prefix into ignore list to avoid nxstyle warning Signed-off-by: chao an --- tools/nxstyle.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/nxstyle.c b/tools/nxstyle.c index d2d2b976cec..aab68634bce 100644 --- a/tools/nxstyle.c +++ b/tools/nxstyle.c @@ -206,6 +206,7 @@ static const char *g_white_prefix[] = "ub32", /* Ref: include/fixedmath.h */ "lua_", /* Ref: apps/interpreters/lua/lua-5.x.x/src/lua.h */ "luaL_", /* Ref: apps/interpreters/lua/lua-5.x.x/src/lauxlib.h */ + "Ifx", /* Ref: arch/tricore/src */ NULL }; @@ -569,6 +570,12 @@ static const char *g_white_content_list[] = static const char *g_white_headers[] = { "windows.h", + + /* Ref: + * arch/tricore/src/common/tricore_serial.c + */ + + "IfxAsclin_Asc.h", NULL };