staging: vt6656: camel case and cleanup CARDbyGetPktType

camel case changes
pDevice -> priv

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-24 14:36:59 +01:00 committed by Greg Kroah-Hartman
parent de0eb9ef70
commit 1f44238f6c
1 changed files with 7 additions and 10 deletions

View File

@ -534,18 +534,15 @@ int CARDbIsOFDMinBasicRate(struct vnt_private *priv)
return false; return false;
} }
u8 CARDbyGetPktType(struct vnt_private *pDevice) u8 CARDbyGetPktType(struct vnt_private *priv)
{ {
if (pDevice->byBBType == BB_TYPE_11A || pDevice->byBBType == BB_TYPE_11B) { if (priv->byBBType == BB_TYPE_11A || priv->byBBType == BB_TYPE_11B)
return (u8)pDevice->byBBType; return (u8)priv->byBBType;
} else if (CARDbIsOFDMinBasicRate(priv))
else if (CARDbIsOFDMinBasicRate(pDevice)) { return PK_TYPE_11GA;
return PK_TYPE_11GA; else
} return PK_TYPE_11GB;
else {
return PK_TYPE_11GB;
}
} }
/* /*