mirror of https://gitee.com/openkylin/linux.git
brcmsmac: Add missing annotation for brcms_rfkill_set_hw_state()
Sparse reports a warning at brcms_rfkill_set_hw_state() warning: context imbalance in brcms_rfkill_set_hw_state() - unexpected unlock The root cause is the missing annotation at brcms_rfkill_set_hw_state() Add the missing __must_hold(&wl->lock) annotation Signed-off-by: Jules Irenge <jbi.octave@gmail.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/20200411001933.10072-5-jbi.octave@gmail.com
This commit is contained in:
parent
1c0e3c73e9
commit
2fe5efb8a4
|
@ -1717,6 +1717,7 @@ int brcms_check_firmwares(struct brcms_info *wl)
|
|||
* precondition: perimeter lock has been acquired
|
||||
*/
|
||||
bool brcms_rfkill_set_hw_state(struct brcms_info *wl)
|
||||
__must_hold(&wl->lock)
|
||||
{
|
||||
bool blocked = brcms_c_check_radio_disabled(wl->wlc);
|
||||
|
||||
|
|
Loading…
Reference in New Issue