提交 d9c7dd5d 编写于 作者: C Colin Ian King 提交者: Greg Kroah-Hartman

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: NColin Ian King <colin.king@canonical.com>
Reviewed-by: NHans de Goede <hdegoede@redhat.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 ff8d351d
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册