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

staging: vt6655: PSbIsNextTBTTWakeUp Rename bWakeUp wake_up

Removing camel case.
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c30ab930
...@@ -151,7 +151,7 @@ PSbIsNextTBTTWakeUp( ...@@ -151,7 +151,7 @@ PSbIsNextTBTTWakeUp(
{ {
struct ieee80211_hw *hw = priv->hw; struct ieee80211_hw *hw = priv->hw;
struct ieee80211_conf *conf = &hw->conf; struct ieee80211_conf *conf = &hw->conf;
bool bWakeUp = false; bool wake_up = false;
if (conf->listen_interval > 1) { if (conf->listen_interval > 1) {
if (!priv->wake_up_count) if (!priv->wake_up_count)
...@@ -163,9 +163,9 @@ PSbIsNextTBTTWakeUp( ...@@ -163,9 +163,9 @@ PSbIsNextTBTTWakeUp(
/* Turn on wake up to listen next beacon */ /* Turn on wake up to listen next beacon */
MACvRegBitsOn(priv->PortOffset, MACvRegBitsOn(priv->PortOffset,
MAC_REG_PSCTL, PSCTL_LNBCN); MAC_REG_PSCTL, PSCTL_LNBCN);
bWakeUp = true; wake_up = true;
} }
} }
return bWakeUp; return wake_up;
} }
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