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:
Colin Ian King 2017-04-13 16:46:36 +01:00 committed by Greg Kroah-Hartman
parent ff8d351d71
commit d9c7dd5db1

View file

@ -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;