Commit 2bac6f98 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: PSvEnablePowerSaving remove camel case

camel case changes
pDevice -> priv
wListenInterval -> listen_interval
pMgmt -> mgmt
wAID -> aid
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ab51f51b
...@@ -58,60 +58,60 @@ static int msglevel = MSG_LEVEL_INFO; ...@@ -58,60 +58,60 @@ static int msglevel = MSG_LEVEL_INFO;
* *
*/ */
void PSvEnablePowerSaving(struct vnt_private *pDevice, u16 wListenInterval) void PSvEnablePowerSaving(struct vnt_private *priv, u16 listen_interval)
{ {
struct vnt_manager *pMgmt = &pDevice->vnt_mgmt; struct vnt_manager *mgmt = &priv->vnt_mgmt;
u16 wAID = pMgmt->wCurrAID | BIT14 | BIT15; u16 aid = mgmt->wCurrAID | BIT14 | BIT15;
/* set period of power up before TBTT */ /* set period of power up before TBTT */
vnt_mac_write_word(pDevice, MAC_REG_PWBT, C_PWBT); vnt_mac_write_word(priv, MAC_REG_PWBT, C_PWBT);
if (pDevice->op_mode != NL80211_IFTYPE_ADHOC) { if (priv->op_mode != NL80211_IFTYPE_ADHOC) {
/* set AID */ /* set AID */
vnt_mac_write_word(pDevice, MAC_REG_AIDATIM, wAID); vnt_mac_write_word(priv, MAC_REG_AIDATIM, aid);
} }
/* Warren:06-18-2004,the sequence must follow /* Warren:06-18-2004,the sequence must follow
* PSEN->AUTOSLEEP->GO2DOZE * PSEN->AUTOSLEEP->GO2DOZE
*/ */
/* enable power saving hw function */ /* enable power saving hw function */
vnt_mac_reg_bits_on(pDevice, MAC_REG_PSCTL, PSCTL_PSEN); vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_PSEN);
/* Set AutoSleep */ /* Set AutoSleep */
vnt_mac_reg_bits_on(pDevice, MAC_REG_PSCFG, PSCFG_AUTOSLEEP); vnt_mac_reg_bits_on(priv, MAC_REG_PSCFG, PSCFG_AUTOSLEEP);
/* Warren:MUST turn on this once before turn on AUTOSLEEP ,or the /* Warren:MUST turn on this once before turn on AUTOSLEEP ,or the
* AUTOSLEEP doesn't work * AUTOSLEEP doesn't work
*/ */
vnt_mac_reg_bits_on(pDevice, MAC_REG_PSCTL, PSCTL_GO2DOZE); vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_GO2DOZE);
if (wListenInterval >= 2) { if (listen_interval >= 2) {
/* clear always listen beacon */ /* clear always listen beacon */
vnt_mac_reg_bits_off(pDevice, MAC_REG_PSCTL, PSCTL_ALBCN); vnt_mac_reg_bits_off(priv, MAC_REG_PSCTL, PSCTL_ALBCN);
/* first time set listen next beacon */ /* first time set listen next beacon */
vnt_mac_reg_bits_on(pDevice, MAC_REG_PSCTL, PSCTL_LNBCN); vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_LNBCN);
pMgmt->wCountToWakeUp = wListenInterval; mgmt->wCountToWakeUp = listen_interval;
} else { } else {
/* always listen beacon */ /* always listen beacon */
vnt_mac_reg_bits_on(pDevice, MAC_REG_PSCTL, PSCTL_ALBCN); vnt_mac_reg_bits_on(priv, MAC_REG_PSCTL, PSCTL_ALBCN);
pMgmt->wCountToWakeUp = 0; mgmt->wCountToWakeUp = 0;
} }
pDevice->bEnablePSMode = true; priv->bEnablePSMode = true;
/* We don't send null pkt in ad hoc mode /* We don't send null pkt in ad hoc mode
* since beacon will handle this. * since beacon will handle this.
*/ */
if (pDevice->op_mode == NL80211_IFTYPE_STATION) if (priv->op_mode == NL80211_IFTYPE_STATION)
PSbSendNullPacket(pDevice); PSbSendNullPacket(priv);
pDevice->bPWBitOn = true; priv->bPWBitOn = true;
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "PS:Power Saving Mode Enable...\n"); DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "PS:Power Saving Mode Enable...\n");
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment