mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-07 05:46:40 +07:00
staging: rtl8723bs: clean up identical code on an if statement
The two different paths for an if statement are identical and hence we can just replace it with the single statement. Detected by CoverityScan, CID#1428443 ("Identical code for different branches") Signed-off-by: Colin Ian King <colin.king@canonical.com> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ff8d351d71
commit
d9c7dd5db1
@ -1093,11 +1093,7 @@ void rtw_free_assoc_resources(struct adapter *adapter, int lock_scanned_queue)
|
||||
rtw_init_bcmc_stainfo(adapter);
|
||||
}
|
||||
|
||||
if (lock_scanned_queue) {
|
||||
find_network(adapter);
|
||||
} else {
|
||||
find_network(adapter);
|
||||
}
|
||||
find_network(adapter);
|
||||
|
||||
if (lock_scanned_queue)
|
||||
adapter->securitypriv.key_mask = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user