[PATCH] libertas: remove adapter->nullpktinterval

No code ever initialized this variable, so it was 0 because of kzalloc().
But no other code changes it, making it rather useless.

Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Holger Schurig
2007-08-02 13:09:15 -04:00
committed by David S. Miller
parent a783f1ee5b
commit 97605c3eb3
2 changed files with 1 additions and 3 deletions

View File

@@ -73,8 +73,7 @@ static int wlan_cmd_802_11_ps_mode(wlan_private * priv,
psm->locallisteninterval = psm->locallisteninterval =
cpu_to_le16(adapter->locallisteninterval); cpu_to_le16(adapter->locallisteninterval);
psm->nullpktinterval = psm->nullpktinterval = 0;
cpu_to_le16(adapter->nullpktinterval);
psm->multipledtim = psm->multipledtim =
cpu_to_le16(priv->adapter->multipledtim); cpu_to_le16(priv->adapter->multipledtim);
break; break;

View File

@@ -313,7 +313,6 @@ struct _wlan_adapter {
struct PS_CMD_ConfirmSleep libertas_ps_confirm_sleep; struct PS_CMD_ConfirmSleep libertas_ps_confirm_sleep;
u16 locallisteninterval; u16 locallisteninterval;
u16 nullpktinterval;
struct assoc_request * pending_assoc_req; struct assoc_request * pending_assoc_req;
struct assoc_request * in_progress_assoc_req; struct assoc_request * in_progress_assoc_req;