From 2a03582541aa53e06439c68e6917031f3d42cd9a Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Mon, 29 Mar 2021 20:28:58 +0200 Subject: [PATCH] nxstyle: add Mixed Case exceptions Add _Far and _Erom to the mixed case exceptions Ref: nuttx/compiler.h Signed-off-by: Alin Jerpelea --- tools/nxstyle.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/nxstyle.c b/tools/nxstyle.c index 37efec7020..a716ea1935 100644 --- a/tools/nxstyle.c +++ b/tools/nxstyle.c @@ -263,6 +263,13 @@ static const char *g_white_list[] = "ASCII_y", "ASCII_z", +/* Ref: + * nuttx/compiler.h + */ + + "_Far", + "_Erom", + NULL };