forked from luck/tmp_suning_uos_patched
[PATCH] libertas: remove adapter->multipledtim
multipledtim was initialized with MRVDRV_DEFAULT_MULTIPLE_DTIM and then kept at that value, so we could use that define directly. Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
252cf0d10f
commit
56c4656e84
@ -71,7 +71,7 @@ static int wlan_cmd_802_11_ps_mode(wlan_private * priv,
|
||||
psm->locallisteninterval = 0;
|
||||
psm->nullpktinterval = 0;
|
||||
psm->multipledtim =
|
||||
cpu_to_le16(priv->adapter->multipledtim);
|
||||
cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
|
||||
break;
|
||||
|
||||
case CMD_SUBCMD_EXIT_PS:
|
||||
|
@ -307,7 +307,6 @@ struct _wlan_adapter {
|
||||
|
||||
u16 psmode; /* Wlan802_11PowermodeCAM=disable
|
||||
Wlan802_11PowermodeMAX_PSP=enable */
|
||||
u16 multipledtim;
|
||||
u32 psstate;
|
||||
u8 needtowakeup;
|
||||
|
||||
|
@ -1053,7 +1053,6 @@ static void wlan_init_adapter(wlan_private * priv)
|
||||
adapter->capability = WLAN_CAPABILITY_SHORT_PREAMBLE;
|
||||
|
||||
adapter->psmode = WLAN802_11POWERMODECAM;
|
||||
adapter->multipledtim = MRVDRV_DEFAULT_MULTIPLE_DTIM;
|
||||
|
||||
adapter->listeninterval = MRVDRV_DEFAULT_LISTEN_INTERVAL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user