staging: vt6655: dead code remove CARDbAddBasicRate

we nonlonger set rates in the driver

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-11-07 19:06:01 +00:00 committed by Greg Kroah-Hartman
parent 3008dd9d9b
commit b930eb56e3
2 changed files with 0 additions and 13 deletions

View file

@ -861,18 +861,6 @@ void CARDvUpdateBasicTopRate(struct vnt_private *pDevice)
pDevice->byTopCCKBasicRate = byTopCCK;
}
bool CARDbAddBasicRate(struct vnt_private *pDevice, unsigned short wRateIdx)
{
unsigned short wRate = (unsigned short)(1<<wRateIdx);
pDevice->wBasicRate |= wRate;
/* Determines the highest basic rate. */
CARDvUpdateBasicTopRate((void *)pDevice);
return true;
}
bool CARDbIsOFDMinBasicRate(struct vnt_private *pDevice)
{
int ii;

View file

@ -76,7 +76,6 @@ struct vnt_private;
void CARDvSetRSPINF(struct vnt_private *, CARD_PHY_TYPE ePHYType);
void vUpdateIFS(struct vnt_private *);
void CARDvUpdateBasicTopRate(struct vnt_private *);
bool CARDbAddBasicRate(struct vnt_private *, unsigned short wRateIdx);
bool CARDbIsOFDMinBasicRate(struct vnt_private *);
void CARDvSetLoopbackMode(void __iomem *dwIoBase, unsigned short wLoopbackMode);
bool CARDbSoftwareReset(struct vnt_private *);