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. Dmitry