tools/nxstyle: add infineon prefix into ignore list

add infineon prefix into ignore list to avoid nxstyle warning

Signed-off-by: chao an <anchao@lixiang.com>
This commit is contained in:
chao an 2024-02-18 15:52:30 +08:00 committed by Xiang Xiao
parent be4875ed30
commit 09aede87ee

View File

@ -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
};