staging: rtl8723au: _rtw_free_network23a(): Remove write-only variable 'lifetime'

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Jes Sorensen 2014-04-26 18:55:49 +02:00 committed by Greg Kroah-Hartman
commit 503ee62874

View file

@ -149,18 +149,12 @@ struct wlan_network *rtw_alloc_network(struct mlme_priv *pmlmepriv)
static void _rtw_free_network23a(struct mlme_priv *pmlmepriv,
struct wlan_network *pnetwork, u8 isfreeall)
{
u32 lifetime = SCANQUEUE_LIFETIME;
if (!pnetwork)
return;
if (pnetwork->fixed == true)
return;
if ((check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE) == true) ||
(check_fwstate(pmlmepriv, WIFI_ADHOC_STATE) == true))
lifetime = 1;
list_del_init(&pnetwork->list);
kfree(pnetwork);