You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running checkpatch.pl for tests/kernel/static_idt/src/main.c I see the following warning messages:
tests/kernel/static_idt/src/main.c:92: WARNING:FUNCTION_ARGUMENTS: function definition argument 'exc_divide_error_handler' should also have an identifier name
#92: FILE: tests/kernel/static_idt/src/main.c:92:
+extern void *_EXCEPTION_STUB_NAME(exc_divide_error_handler, IV_DIVIDE_ERROR);
tests/kernel/static_idt/src/main.c:92: WARNING:FUNCTION_ARGUMENTS: function definition argument 'IV_DIVIDE_ERROR' should also have an identifier name
#92: FILE: tests/kernel/static_idt/src/main.c:92:
+extern void *_EXCEPTION_STUB_NAME(exc_divide_error_handler, IV_DIVIDE_ERROR);
The text was updated successfully, but these errors were encountered:
Current unnamed function definition argument does not include function
pointer cases and it reports warnings like:
WARNING: function definition argument 'void' should also have an
identifier name
+unsigned int (*dummy)(void);
Support function pointers for unnamed function arguments.
Fixeszephyrproject-rtos#9411
Signed-off-by: Ajay Kishore <[email protected]>
going to close this one because checkpatch generates quite a few warnings that are false negatives and we are not going to fix all of those. We will just override them.
Uh oh!
There was an error while loading. Please reload this page.
When running checkpatch.pl for tests/kernel/static_idt/src/main.c I see the following warning messages:
The text was updated successfully, but these errors were encountered: