summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6656/baseband.c
diff options
context:
space:
mode:
authorMalcolm Priestley <tvboxspy@gmail.com>2014-05-19 20:32:59 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-05-19 15:23:21 -0700
commit3b5a89ca3db0f8c816aa0590d3b2955df63d3d01 (patch)
treea105dcf5af1a05f6be29a06d3b265a8c6742a089 /drivers/staging/vt6656/baseband.c
parent4d99952df1d6a4ef14013fe315a44fcd6bdd9f59 (diff)
downloadop-kernel-dev-3b5a89ca3db0f8c816aa0590d3b2955df63d3d01.zip
op-kernel-dev-3b5a89ca3db0f8c816aa0590d3b2955df63d3d01.tar.gz
staging: vt6656: BBuGetFrameTime remove uRateIdx
Remove uRateIdx and rename wRate tx_rate Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656/baseband.c')
-rw-r--r--drivers/staging/vt6656/baseband.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/drivers/staging/vt6656/baseband.c b/drivers/staging/vt6656/baseband.c
index dbe06f9..baa3858 100644
--- a/drivers/staging/vt6656/baseband.c
+++ b/drivers/staging/vt6656/baseband.c
@@ -657,27 +657,26 @@ s_vClearSQ3Value(PSDevice pDevice);
* byPreambleType - Preamble Type
* byPktType - PK_TYPE_11A, PK_TYPE_11B, PK_TYPE_11GB, PK_TYPE_11GA
* cbFrameLength - Baseband Type
- * wRate - Tx Rate
+ * tx_rate - Tx Rate
* Out:
*
* Return Value: FrameTime
*
*/
-unsigned int BBuGetFrameTime(u8 byPreambleType, u8 byPktType,
- unsigned int cbFrameLength, u16 wRate)
+unsigned int BBuGetFrameTime(u8 byPreambleType, u8 byPktType,
+ unsigned int cbFrameLength, u16 tx_rate)
{
unsigned int uFrameTime;
unsigned int uPreamble;
unsigned int uTmp;
- unsigned int uRateIdx = (unsigned int)wRate;
unsigned int uRate = 0;
- if (uRateIdx > RATE_54M)
+ if (tx_rate > RATE_54M)
return 0;
- uRate = (unsigned int)awcFrameTime[uRateIdx];
+ uRate = (unsigned int)awcFrameTime[tx_rate];
- if (uRateIdx <= 3) {
+ if (tx_rate <= 3) {
if (byPreambleType == 1)
uPreamble = 96;
else
OpenPOWER on IntegriCloud