mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 01:55:51 +02:00
staging: rtl8723bs: replace NULL comparison with NOT operator
Fix checkpatch error "Comparison to NULL could be written "!psta"" in ioctl_cfg80211.c:2432 Signed-off-by: Miguel Cyrineu Vale <miguelcvalealt@gmail.com> Reviewed-by: Luka Gejak <luka.gejak@linux.dev> Link: https://patch.msgid.link/20260427193759.71642-1-miguelcvalealt@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
90a7073e8a
commit
7b07c48f8e
|
|
@ -2429,7 +2429,7 @@ static int cfg80211_rtw_dump_station(struct wiphy *wiphy,
|
|||
spin_lock_bh(&pstapriv->asoc_list_lock);
|
||||
psta = rtw_sta_info_get_by_idx(idx, pstapriv);
|
||||
spin_unlock_bh(&pstapriv->asoc_list_lock);
|
||||
if (psta == NULL) {
|
||||
if (!psta) {
|
||||
ret = -ENOENT;
|
||||
goto exit;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user