staging; vt6656: swGetCCKControlRate remove camel case

camel case changes
pDevice -> priv
wRateIdx -> rate_idx

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-05-25 21:36:23 +01:00 committed by Greg Kroah-Hartman
parent a5a7c43906
commit 3d2988c74b

View file

@ -123,20 +123,20 @@ void CARDbSetMediaChannel(struct vnt_private *priv, u32 connection_channel)
*
* Parameters:
* In:
* pDevice - The adapter to be set
* wRateIdx - Receiving data rate
* priv - The adapter to be set
* rate_idx - Receiving data rate
* Out:
* none
*
* Return Value: response Control frame rate
*
*/
static u16 swGetCCKControlRate(struct vnt_private *pDevice, u16 wRateIdx)
static u16 swGetCCKControlRate(struct vnt_private *priv, u16 rate_idx)
{
u16 ui = wRateIdx;
u16 ui = rate_idx;
while (ui > RATE_1M) {
if (pDevice->wBasicRate & (1 << ui))
if (priv->wBasicRate & (1 << ui))
return ui;
ui--;
}