mirror of https://gitee.com/openkylin/linux.git
staging: vt6655 - add parameter names
Fix checkpatch.pl warnings of the form "function definition argument 'foo' should also have an identifier name" in header files. Signed-off-by: Derek Robson <robsonde@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
178f5f0f08
commit
24c8bd8feb
|
@ -64,25 +64,25 @@ typedef enum _CARD_STATUS_TYPE {
|
|||
struct vnt_private;
|
||||
|
||||
void CARDvSetRSPINF(struct vnt_private *priv, u8 bb_type);
|
||||
void CARDvUpdateBasicTopRate(struct vnt_private *);
|
||||
bool CARDbIsOFDMinBasicRate(struct vnt_private *);
|
||||
void CARDvSetLoopbackMode(struct vnt_private *, unsigned short wLoopbackMode);
|
||||
bool CARDbSoftwareReset(struct vnt_private *);
|
||||
void CARDvSetFirstNextTBTT(struct vnt_private *,
|
||||
void CARDvUpdateBasicTopRate(struct vnt_private *priv);
|
||||
bool CARDbIsOFDMinBasicRate(struct vnt_private *priv);
|
||||
void CARDvSetLoopbackMode(struct vnt_private *priv, unsigned short wLoopbackMode);
|
||||
bool CARDbSoftwareReset(struct vnt_private *priv);
|
||||
void CARDvSetFirstNextTBTT(struct vnt_private *priv,
|
||||
unsigned short wBeaconInterval);
|
||||
void CARDvUpdateNextTBTT(struct vnt_private *, u64 qwTSF,
|
||||
void CARDvUpdateNextTBTT(struct vnt_private *priv, u64 qwTSF,
|
||||
unsigned short wBeaconInterval);
|
||||
bool CARDbGetCurrentTSF(struct vnt_private *, u64 *pqwCurrTSF);
|
||||
bool CARDbGetCurrentTSF(struct vnt_private *priv, u64 *pqwCurrTSF);
|
||||
u64 CARDqGetNextTBTT(u64 qwTSF, unsigned short wBeaconInterval);
|
||||
u64 CARDqGetTSFOffset(unsigned char byRxRate, u64 qwTSF1, u64 qwTSF2);
|
||||
unsigned char CARDbyGetPktType(struct vnt_private *);
|
||||
void CARDvSafeResetTx(struct vnt_private *);
|
||||
void CARDvSafeResetRx(struct vnt_private *);
|
||||
bool CARDbRadioPowerOff(struct vnt_private *);
|
||||
bool CARDbRadioPowerOn(struct vnt_private *);
|
||||
bool CARDbSetPhyParameter(struct vnt_private *, u8);
|
||||
bool CARDbUpdateTSF(struct vnt_private *, unsigned char byRxRate,
|
||||
unsigned char CARDbyGetPktType(struct vnt_private *priv);
|
||||
void CARDvSafeResetTx(struct vnt_private *priv);
|
||||
void CARDvSafeResetRx(struct vnt_private *priv);
|
||||
bool CARDbRadioPowerOff(struct vnt_private *priv);
|
||||
bool CARDbRadioPowerOn(struct vnt_private *priv);
|
||||
bool CARDbSetPhyParameter(struct vnt_private *priv, u8 bb_type);
|
||||
bool CARDbUpdateTSF(struct vnt_private *priv, unsigned char byRxRate,
|
||||
u64 qwBSSTimestamp);
|
||||
bool CARDbSetBeaconPeriod(struct vnt_private *, unsigned short wBeaconInterval);
|
||||
bool CARDbSetBeaconPeriod(struct vnt_private *priv, unsigned short wBeaconInterval);
|
||||
|
||||
#endif /* __CARD_H__ */
|
||||
|
|
|
@ -21,8 +21,8 @@
|
|||
|
||||
#include "card.h"
|
||||
|
||||
void vnt_init_bands(struct vnt_private *);
|
||||
void vnt_init_bands(struct vnt_private *priv);
|
||||
|
||||
bool set_channel(struct vnt_private *, struct ieee80211_channel *);
|
||||
bool set_channel(struct vnt_private *priv, struct ieee80211_channel *ch);
|
||||
|
||||
#endif /* _CHANNEL_H_ */
|
||||
|
|
|
@ -885,57 +885,57 @@ do { \
|
|||
#define MACvSetRFLE_LatchBase(iobase) \
|
||||
MACvWordRegBitsOn(iobase, MAC_REG_SOFTPWRCTL, SOFTPWRCTL_RFLEOPT)
|
||||
|
||||
bool MACbIsRegBitsOn(struct vnt_private *, unsigned char byRegOfs,
|
||||
bool MACbIsRegBitsOn(struct vnt_private *priv, unsigned char byRegOfs,
|
||||
unsigned char byTestBits);
|
||||
bool MACbIsRegBitsOff(struct vnt_private *, unsigned char byRegOfs,
|
||||
bool MACbIsRegBitsOff(struct vnt_private *priv, unsigned char byRegOfs,
|
||||
unsigned char byTestBits);
|
||||
|
||||
bool MACbIsIntDisable(struct vnt_private *);
|
||||
bool MACbIsIntDisable(struct vnt_private *priv);
|
||||
|
||||
void MACvSetShortRetryLimit(struct vnt_private *, unsigned char byRetryLimit);
|
||||
void MACvSetShortRetryLimit(struct vnt_private *priv, unsigned char byRetryLimit);
|
||||
|
||||
void MACvSetLongRetryLimit(struct vnt_private *, unsigned char byRetryLimit);
|
||||
void MACvGetLongRetryLimit(struct vnt_private *,
|
||||
void MACvSetLongRetryLimit(struct vnt_private *priv, unsigned char byRetryLimit);
|
||||
void MACvGetLongRetryLimit(struct vnt_private *priv,
|
||||
unsigned char *pbyRetryLimit);
|
||||
|
||||
void MACvSetLoopbackMode(struct vnt_private *, unsigned char byLoopbackMode);
|
||||
void MACvSetLoopbackMode(struct vnt_private *priv, unsigned char byLoopbackMode);
|
||||
|
||||
void MACvSaveContext(struct vnt_private *, unsigned char *pbyCxtBuf);
|
||||
void MACvRestoreContext(struct vnt_private *, unsigned char *pbyCxtBuf);
|
||||
void MACvSaveContext(struct vnt_private *priv, unsigned char *pbyCxtBuf);
|
||||
void MACvRestoreContext(struct vnt_private *priv, unsigned char *pbyCxtBuf);
|
||||
|
||||
bool MACbSoftwareReset(struct vnt_private *);
|
||||
bool MACbSafeSoftwareReset(struct vnt_private *);
|
||||
bool MACbSafeRxOff(struct vnt_private *);
|
||||
bool MACbSafeTxOff(struct vnt_private *);
|
||||
bool MACbSafeStop(struct vnt_private *);
|
||||
bool MACbShutdown(struct vnt_private *);
|
||||
void MACvInitialize(struct vnt_private *);
|
||||
void MACvSetCurrRx0DescAddr(struct vnt_private *,
|
||||
bool MACbSoftwareReset(struct vnt_private *priv);
|
||||
bool MACbSafeSoftwareReset(struct vnt_private *priv);
|
||||
bool MACbSafeRxOff(struct vnt_private *priv);
|
||||
bool MACbSafeTxOff(struct vnt_private *priv);
|
||||
bool MACbSafeStop(struct vnt_private *priv);
|
||||
bool MACbShutdown(struct vnt_private *priv);
|
||||
void MACvInitialize(struct vnt_private *priv);
|
||||
void MACvSetCurrRx0DescAddr(struct vnt_private *priv,
|
||||
u32 curr_desc_addr);
|
||||
void MACvSetCurrRx1DescAddr(struct vnt_private *,
|
||||
void MACvSetCurrRx1DescAddr(struct vnt_private *priv,
|
||||
u32 curr_desc_addr);
|
||||
void MACvSetCurrTXDescAddr(int iTxType, struct vnt_private *,
|
||||
void MACvSetCurrTXDescAddr(int iTxType, struct vnt_private *priv,
|
||||
u32 curr_desc_addr);
|
||||
void MACvSetCurrTx0DescAddrEx(struct vnt_private *,
|
||||
void MACvSetCurrTx0DescAddrEx(struct vnt_private *priv,
|
||||
u32 curr_desc_addr);
|
||||
void MACvSetCurrAC0DescAddrEx(struct vnt_private *,
|
||||
void MACvSetCurrAC0DescAddrEx(struct vnt_private *priv,
|
||||
u32 curr_desc_addr);
|
||||
void MACvSetCurrSyncDescAddrEx(struct vnt_private *,
|
||||
void MACvSetCurrSyncDescAddrEx(struct vnt_private *priv,
|
||||
u32 curr_desc_addr);
|
||||
void MACvSetCurrATIMDescAddrEx(struct vnt_private *,
|
||||
void MACvSetCurrATIMDescAddrEx(struct vnt_private *priv,
|
||||
u32 curr_desc_addr);
|
||||
void MACvTimer0MicroSDelay(struct vnt_private *, unsigned int uDelay);
|
||||
void MACvOneShotTimer1MicroSec(struct vnt_private *, unsigned int uDelayTime);
|
||||
void MACvTimer0MicroSDelay(struct vnt_private *priv, unsigned int uDelay);
|
||||
void MACvOneShotTimer1MicroSec(struct vnt_private *priv, unsigned int uDelayTime);
|
||||
|
||||
void MACvSetMISCFifo(struct vnt_private *, unsigned short wOffset,
|
||||
void MACvSetMISCFifo(struct vnt_private *priv, unsigned short wOffset,
|
||||
u32 dwData);
|
||||
|
||||
bool MACbPSWakeup(struct vnt_private *);
|
||||
bool MACbPSWakeup(struct vnt_private *priv);
|
||||
|
||||
void MACvSetKeyEntry(struct vnt_private *, unsigned short wKeyCtl,
|
||||
void MACvSetKeyEntry(struct vnt_private *priv, unsigned short wKeyCtl,
|
||||
unsigned int uEntryIdx, unsigned int uKeyIdx,
|
||||
unsigned char *pbyAddr, u32 *pdwKey,
|
||||
unsigned char byLocalID);
|
||||
void MACvDisableKeyEntry(struct vnt_private *, unsigned int uEntryIdx);
|
||||
void MACvDisableKeyEntry(struct vnt_private *priv, unsigned int uEntryIdx);
|
||||
|
||||
#endif /* __MAC_H__ */
|
||||
|
|
|
@ -31,20 +31,10 @@
|
|||
#define PS_FAST_INTERVAL 1 /* Fast power saving listen interval */
|
||||
#define PS_MAX_INTERVAL 4 /* MAX power saving listen interval */
|
||||
|
||||
void
|
||||
PSvDisablePowerSaving(
|
||||
struct vnt_private *
|
||||
);
|
||||
void PSvDisablePowerSaving(struct vnt_private *priv);
|
||||
|
||||
void
|
||||
PSvEnablePowerSaving(
|
||||
struct vnt_private *,
|
||||
unsigned short wListenInterval
|
||||
);
|
||||
void PSvEnablePowerSaving(struct vnt_private *priv, unsigned short wListenInterval);
|
||||
|
||||
bool
|
||||
PSbIsNextTBTTWakeUp(
|
||||
struct vnt_private *
|
||||
);
|
||||
bool PSbIsNextTBTTWakeUp(struct vnt_private *priv);
|
||||
|
||||
#endif /* __POWER_H__ */
|
||||
|
|
|
@ -68,28 +68,28 @@
|
|||
|
||||
/*--------------------- Export Functions --------------------------*/
|
||||
|
||||
bool IFRFbWriteEmbedded(struct vnt_private *, unsigned long dwData);
|
||||
bool RFbSelectChannel(struct vnt_private *, unsigned char byRFType, u16);
|
||||
bool IFRFbWriteEmbedded(struct vnt_private *priv, unsigned long dwData);
|
||||
bool RFbSelectChannel(struct vnt_private *priv, unsigned char byRFType, u16 byChannel);
|
||||
bool RFbInit(
|
||||
struct vnt_private *
|
||||
struct vnt_private *priv
|
||||
);
|
||||
bool RFvWriteWakeProgSyn(struct vnt_private *, unsigned char byRFType, u16);
|
||||
bool RFbSetPower(struct vnt_private *, unsigned int rate, u16);
|
||||
bool RFvWriteWakeProgSyn(struct vnt_private *priv, unsigned char byRFType, u16 uChannel);
|
||||
bool RFbSetPower(struct vnt_private *priv, unsigned int rate, u16 uCH);
|
||||
bool RFbRawSetPower(
|
||||
struct vnt_private *,
|
||||
struct vnt_private *priv,
|
||||
unsigned char byPwr,
|
||||
unsigned int rate
|
||||
);
|
||||
|
||||
void
|
||||
RFvRSSITodBm(
|
||||
struct vnt_private *,
|
||||
struct vnt_private *priv,
|
||||
unsigned char byCurrRSSI,
|
||||
long *pldBm
|
||||
);
|
||||
|
||||
/* {{ RobertYu: 20050104 */
|
||||
bool RFbAL7230SelectChannelPostProcess(struct vnt_private *, u16, u16);
|
||||
bool RFbAL7230SelectChannelPostProcess(struct vnt_private *priv, u16 byOldChannel, u16 byNewChannel);
|
||||
/* }} RobertYu */
|
||||
|
||||
#endif /* __RF_H__ */
|
||||
|
|
Loading…
Reference in New Issue