hartmannathan commented on PR #15847: URL: https://github.com/apache/nuttx/pull/15847#issuecomment-2671970946
OK the very first new report is: ``` /work/NuttX/nuttx/drivers/coresight/coresight_etm4.c:618:6: error: Unexpected whitespace found after keyword ``` which is: ``` static uint64_t etm4_sysreg_read(uint32_t offset) { uint64_t res = 0; switch (offset) { ETM4_READ_SYSREG_CASES(res) default : cserr("etm4x: trying to read unsupported register @%x\n", offset); } return res; } ``` which indeed has a spurious space after `default`, so nxstyle is giving a valid new report here! I guess a separate PR can go and fix these... -- 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