CHECK: Macro argument reuse 'sof_ver' - possible side-effects? #26: FILE: include/uapi/sound/sof-abi.h:17: +#define SOF_ABI_VERSION_INCOMPATIBLE(sof_ver, client_ver) \ + (SOF_ABI_VERSION_MAJOR((sof_ver)) != \ + SOF_ABI_VERSION_MAJOR((client_ver)) || \ + ( \ + SOF_ABI_VERSION_MAJOR((sof_ver)) == \ + SOF_ABI_VERSION_MAJOR((client_ver)) && \ + SOF_ABI_VERSION_MINOR((sof_ver)) != \ + SOF_ABI_VERSION_MINOR((client_ver)) \ + ) \ + ) CHECK: Macro argument reuse 'client_ver' - possible side-effects? #26: FILE: include/uapi/sound/sof-abi.h:17: +#define SOF_ABI_VERSION_INCOMPATIBLE(sof_ver, client_ver) \ + (SOF_ABI_VERSION_MAJOR((sof_ver)) != \ + SOF_ABI_VERSION_MAJOR((client_ver)) || \ + ( \ + SOF_ABI_VERSION_MAJOR((sof_ver)) == \ + SOF_ABI_VERSION_MAJOR((client_ver)) && \ + SOF_ABI_VERSION_MINOR((sof_ver)) != \ + SOF_ABI_VERSION_MINOR((client_ver)) \ + ) \ + ) total: 0 errors, 0 warnings, 2 checks, 29 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. ./linux-sof-driver/0001-SOF-Update-uapi-sof-abi.h-header-to-conform-to-curre.patch has style problems, please review. NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS.