staging: vt6656: struct vnt_private replace wCurrentRate with current_rate

Removing type prefix and camel case.

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-07-20 15:33:19 +01:00 committed by Greg Kroah-Hartman
parent 5a97491c33
commit 8b84c1da02
4 changed files with 8 additions and 8 deletions

View File

@ -349,7 +349,7 @@ struct vnt_private {
u8 ofdm_pwr_tbl[14];
u8 ofdm_a_pwr_tbl[42];
u16 wCurrentRate;
u16 current_rate;
u16 tx_rate_fb0;
u16 tx_rate_fb1;

View File

@ -718,11 +718,11 @@ static int vnt_config(struct ieee80211_hw *hw, u32 changed)
if (changed & IEEE80211_CONF_CHANGE_POWER) {
if (priv->bb_type == BB_TYPE_11B)
priv->wCurrentRate = RATE_1M;
priv->current_rate = RATE_1M;
else
priv->wCurrentRate = RATE_54M;
priv->current_rate = RATE_54M;
vnt_rf_setpower(priv, priv->wCurrentRate,
vnt_rf_setpower(priv, priv->current_rate,
conf->chandef.chan->hw_value);
}
@ -778,7 +778,7 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw,
}
if (changed & BSS_CHANGED_TXPOWER)
vnt_rf_setpower(priv, priv->wCurrentRate,
vnt_rf_setpower(priv, priv->current_rate,
conf->chandef.chan->hw_value);
if (changed & BSS_CHANGED_BEACON_ENABLED) {

View File

@ -764,9 +764,9 @@ int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)
rate = ieee80211_get_tx_rate(priv->hw, info);
current_rate = rate->hw_value;
if (priv->wCurrentRate != current_rate &&
if (priv->current_rate != current_rate &&
!(priv->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL)) {
priv->wCurrentRate = current_rate;
priv->current_rate = current_rate;
vnt_schedule_command(priv, WLAN_CMD_SETPOWER);
}

View File

@ -139,7 +139,7 @@ void vnt_run_command(struct work_struct *work)
case WLAN_CMD_SETPOWER_START:
vnt_rf_setpower(priv, priv->wCurrentRate,
vnt_rf_setpower(priv, priv->current_rate,
priv->hw->conf.chandef.chan->hw_value);
break;