FASTSHIFT opened a new pull request, #8389: URL: https://github.com/apache/nuttx/pull/8389
## Summary The `CPU_ISSET` parameter is reversed. ```bash note/note_driver.c: In function 'note_isenabled': note/note_driver.c:278:7: error: invalid type argument of unary '*' (have 'int') 278 | if (CPU_ISSET(&g_note_filter.mode.cpuset, this_cpu()) == 0) | ^~~~~~~~~ note/note_driver.c:278:7: error: invalid operands to binary << (have 'int' and 'volatile cpu_set_t *' {aka 'volatile unsigned char *'}) 278 | if (CPU_ISSET(&g_note_filter.mode.cpuset, this_cpu()) == 0) | ^~~~~~~~~ | | | volatile cpu_set_t * {aka volatile unsigned char *} ``` ## Impact ## Testing -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org