summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/rxtx.c
diff options
context:
space:
mode:
authorMalcolm Priestley2014-07-11 02:08:21 +0200
committerGreg Kroah-Hartman2014-07-12 02:34:26 +0200
commita4c2a8a4f3e4454cce89a79dfa2c816ed93b462a (patch)
treebc2442adb348067227b9b63b5491dadc7abba40a /drivers/staging/vt6656/rxtx.c
parentstaging: vt6656: rxtx rename s_uGetRTSCTSDuration to vnt_get_rtscts_duration_le (diff)
downloadkernel-qcow2-linux-a4c2a8a4f3e4454cce89a79dfa2c816ed93b462a.tar.gz
kernel-qcow2-linux-a4c2a8a4f3e4454cce89a79dfa2c816ed93b462a.tar.xz
kernel-qcow2-linux-a4c2a8a4f3e4454cce89a79dfa2c816ed93b462a.zip
staging: vt6656: s_uGetDataDuration remove camel case
camel case changes pDevice -> priv byPktType -> pkt_type bNeedAck -> need_ack uAckTime -> ack_time 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.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/drivers/staging/vt6656/rxtx.c b/drivers/staging/vt6656/rxtx.c
index c994c080c147..a89f7fd5a926 100644
--- a/drivers/staging/vt6656/rxtx.c
+++ b/drivers/staging/vt6656/rxtx.c
@@ -210,19 +210,20 @@ static __le16 s_uGetRTSCTSRsvTime(struct vnt_private *priv,
}
//byFreqType 0: 5GHz, 1:2.4Ghz
-static __le16 s_uGetDataDuration(struct vnt_private *pDevice,
- u8 byPktType, int bNeedAck)
+static __le16 s_uGetDataDuration(struct vnt_private *piv,
+ u8 pkt_type, int need_ack)
{
- u32 uAckTime = 0;
+ u32 ack_time = 0;
- if (bNeedAck) {
- if (byPktType == PK_TYPE_11B)
- uAckTime = vnt_get_frame_time(pDevice->byPreambleType,
- byPktType, 14, pDevice->byTopCCKBasicRate);
+ if (need_ack) {
+ if (pkt_type == PK_TYPE_11B)
+ ack_time = vnt_get_frame_time(piv->byPreambleType,
+ pkt_type, 14, piv->byTopCCKBasicRate);
else
- uAckTime = vnt_get_frame_time(pDevice->byPreambleType,
- byPktType, 14, pDevice->byTopOFDMBasicRate);
- return cpu_to_le16((u16)(pDevice->uSIFS + uAckTime));
+ ack_time = vnt_get_frame_time(piv->byPreambleType,
+ pkt_type, 14, piv->byTopOFDMBasicRate);
+
+ return cpu_to_le16((u16)(piv->uSIFS + ack_time));
}
return 0;