On Thu, 2023-06-01 at 16:50 +0300, Dmitry Antipov wrote: > > On 6/1/23 15:30, Ping-Ke Shih wrote: > > > Normally, mention a commit by `commit <12 digits SHA1> ("subject")` > > OK > > > Why not just > > > > rtl_get_bbreg(hw, RTX_POWER_BEFORE_IQK_A, MASKDWORD); > > rtl_get_bbreg(hw, RTX_POWER_AFTER_IQK_A, MASKDWORD); > > Compiler with -Wextra etc. or static analysis tool may complain about an unused > return value. As far as I know GCC has __attribute__((warn_unused_result)) but > lacks an opposite thing, so (somewhat ugly explicit) cast to 'void' may be helpful. > Don't you think casting of 'void' only makes tool happy? Ping-Ke