summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/rxtx.c
diff options
context:
space:
mode:
authorMalcolm Priestley2014-07-10 20:56:16 +0200
committerGreg Kroah-Hartman2014-07-11 00:17:15 +0200
commitee16de8c9548bd8fd209912b94d73c953ae3024d (patch)
treeaeb1ad37253cc72ac81b52b363d1b86fde9f2551 /drivers/staging/vt6656/rxtx.c
parentstaging: vt6656: rename s_vGenerateTxParameter to vnt_generate_tx_parameter (diff)
downloadkernel-qcow2-linux-ee16de8c9548bd8fd209912b94d73c953ae3024d.tar.gz
kernel-qcow2-linux-ee16de8c9548bd8fd209912b94d73c953ae3024d.tar.xz
kernel-qcow2-linux-ee16de8c9548bd8fd209912b94d73c953ae3024d.zip
staging: vt6656: s_vFillCTSHead remove camel case
Camel case changes byPktType -> pkt_type cbFrameLength -> frame_len bNeedAck -> need_ack pDevice -> priv uCTSFrameLen -> cts_frame_len Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656/rxtx.c')
-rw-r--r--drivers/staging/vt6656/rxtx.c66
1 files changed, 33 insertions, 33 deletions
diff --git a/drivers/staging/vt6656/rxtx.c b/drivers/staging/vt6656/rxtx.c
index ad1a1b6f4d6b..dce6cb5ac6a4 100644
--- a/drivers/staging/vt6656/rxtx.c
+++ b/drivers/staging/vt6656/rxtx.c
@@ -520,60 +520,60 @@ static u16 vnt_rxtx_rts_a_fb_head(struct vnt_usb_send_context *tx_context,
}
static u16 s_vFillCTSHead(struct vnt_usb_send_context *tx_context,
- u8 byPktType, union vnt_tx_data_head *head, u32 cbFrameLength,
- int bNeedAck, u16 wCurrentRate)
+ u8 pkt_type, union vnt_tx_data_head *head, u32 frame_len,
+ int need_ack, u16 current_rate)
{
- struct vnt_private *pDevice = tx_context->priv;
- u32 uCTSFrameLen = 14;
+ struct vnt_private *priv = tx_context->priv;
+ u32 cts_frame_len = 14;
if (!head)
return 0;
if (tx_context->fb_option) {
/* Auto Fall back */
- struct vnt_cts_fb *pBuf = &head->cts_g_fb;
+ struct vnt_cts_fb *buf = &head->cts_g_fb;
/* Get SignalField,ServiceField,Length */
- vnt_get_phy_field(pDevice, uCTSFrameLen,
- pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
- pBuf->duration_ba = s_uGetRTSCTSDuration(pDevice, CTSDUR_BA,
- cbFrameLength, byPktType,
- wCurrentRate, bNeedAck);
+ vnt_get_phy_field(priv, cts_frame_len,
+ priv->byTopCCKBasicRate, PK_TYPE_11B, &buf->b);
+ buf->duration_ba = s_uGetRTSCTSDuration(priv, CTSDUR_BA,
+ frame_len, pkt_type,
+ current_rate, need_ack);
/* Get CTSDuration_ba_f0 */
- pBuf->cts_duration_ba_f0 = s_uGetRTSCTSDuration(pDevice,
- CTSDUR_BA_F0, cbFrameLength, byPktType,
- pDevice->tx_rate_fb0, bNeedAck);
+ buf->cts_duration_ba_f0 = s_uGetRTSCTSDuration(priv,
+ CTSDUR_BA_F0, frame_len, pkt_type,
+ priv->tx_rate_fb0, need_ack);
/* Get CTSDuration_ba_f1 */
- pBuf->cts_duration_ba_f1 = s_uGetRTSCTSDuration(pDevice,
- CTSDUR_BA_F1, cbFrameLength, byPktType,
- pDevice->tx_rate_fb1, bNeedAck);
+ buf->cts_duration_ba_f1 = s_uGetRTSCTSDuration(priv,
+ CTSDUR_BA_F1, frame_len, pkt_type,
+ priv->tx_rate_fb1, need_ack);
/* Get CTS Frame body */
- pBuf->data.duration = pBuf->duration_ba;
- pBuf->data.frame_control =
+ buf->data.duration = buf->duration_ba;
+ buf->data.frame_control =
cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
- memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
+ memcpy(buf->data.ra, priv->abyCurrentNetAddr, ETH_ALEN);
- return vnt_rxtx_datahead_g_fb(tx_context, byPktType,
- wCurrentRate, &pBuf->data_head, cbFrameLength,
- bNeedAck);
+ return vnt_rxtx_datahead_g_fb(tx_context, pkt_type,
+ current_rate, &buf->data_head, frame_len,
+ need_ack);
} else {
- struct vnt_cts *pBuf = &head->cts_g;
+ struct vnt_cts *buf = &head->cts_g;
/* Get SignalField,ServiceField,Length */
- vnt_get_phy_field(pDevice, uCTSFrameLen,
- pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
+ vnt_get_phy_field(priv, cts_frame_len,
+ priv->byTopCCKBasicRate, PK_TYPE_11B, &buf->b);
/* Get CTSDuration_ba */
- pBuf->duration_ba = s_uGetRTSCTSDuration(pDevice,
- CTSDUR_BA, cbFrameLength, byPktType,
- wCurrentRate, bNeedAck);
+ buf->duration_ba = s_uGetRTSCTSDuration(priv,
+ CTSDUR_BA, frame_len, pkt_type,
+ current_rate, need_ack);
/*Get CTS Frame body*/
- pBuf->data.duration = pBuf->duration_ba;
- pBuf->data.frame_control =
+ buf->data.duration = buf->duration_ba;
+ buf->data.frame_control =
cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
- memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
+ memcpy(buf->data.ra, priv->abyCurrentNetAddr, ETH_ALEN);
- return vnt_rxtx_datahead_g(tx_context, byPktType, wCurrentRate,
- &pBuf->data_head, cbFrameLength, bNeedAck);
+ return vnt_rxtx_datahead_g(tx_context, pkt_type, current_rate,
+ &buf->data_head, frame_len, need_ack);
}
return 0;