staging: vt6656: rename CARDbyGetPktType to vnt_get_pkt_type

drop card rename to vnt_get_pkt_type

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-30 16:27:49 +01:00 committed by Greg Kroah-Hartman
parent cfa4d8d27e
commit e809c96ee5
2 changed files with 3 additions and 3 deletions

View file

@ -526,7 +526,7 @@ int vnt_ofdm_min_rate(struct vnt_private *priv)
return false;
}
u8 CARDbyGetPktType(struct vnt_private *priv)
u8 vnt_get_pkt_type(struct vnt_private *priv)
{
if (priv->byBBType == BB_TYPE_11A || priv->byBBType == BB_TYPE_11B)
@ -836,7 +836,7 @@ void CARDvSetBSSMode(struct vnt_private *priv)
else
MACvSetBBType(priv, priv->byBBType);
priv->byPacketType = CARDbyGetPktType(priv);
priv->byPacketType = vnt_get_pkt_type(priv);
if (priv->byBBType == BB_TYPE_11A)
vnt_control_out_u8(priv, MESSAGE_REQUEST_BBREG, 0x88, 0x03);

View file

@ -62,7 +62,7 @@ u64 CARDqGetNextTBTT(u64 qwTSF, u16 wBeaconInterval);
u64 CARDqGetTSFOffset(u8 byRxRate, u64 qwTSF1, u64 qwTSF2);
int CARDbRadioPowerOff(struct vnt_private *pDevice);
int CARDbRadioPowerOn(struct vnt_private *pDevice);
u8 CARDbyGetPktType(struct vnt_private *pDevice);
u8 vnt_get_pkt_type(struct vnt_private *);
void CARDvSetBSSMode(struct vnt_private *pDevice);
#endif /* __CARD_H__ */