mirror of https://gitee.com/openkylin/linux.git
staging: vt6656: Add missing identifier names
Fix multiple checkpatch.pl warnings: function definition argument '...' should also have an identifier name Signed-off-by: Simon Sandström <simon@nikanor.nu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
520488621e
commit
95134d435c
|
@ -35,21 +35,23 @@
|
|||
|
||||
struct vnt_private;
|
||||
|
||||
void vnt_set_channel(struct vnt_private *, u32);
|
||||
void vnt_set_rspinf(struct vnt_private *, u8);
|
||||
void vnt_update_ifs(struct vnt_private *);
|
||||
void vnt_update_top_rates(struct vnt_private *);
|
||||
int vnt_ofdm_min_rate(struct vnt_private *);
|
||||
void vnt_adjust_tsf(struct vnt_private *, u8, u64, u64);
|
||||
bool vnt_get_current_tsf(struct vnt_private *, u64 *);
|
||||
bool vnt_clear_current_tsf(struct vnt_private *);
|
||||
void vnt_reset_next_tbtt(struct vnt_private *, u16);
|
||||
void vnt_update_next_tbtt(struct vnt_private *, u64, u16);
|
||||
u64 vnt_get_next_tbtt(u64, u16);
|
||||
u64 vnt_get_tsf_offset(u8 byRxRate, u64 qwTSF1, u64 qwTSF2);
|
||||
int vnt_radio_power_off(struct vnt_private *);
|
||||
int vnt_radio_power_on(struct vnt_private *);
|
||||
u8 vnt_get_pkt_type(struct vnt_private *);
|
||||
void vnt_set_bss_mode(struct vnt_private *);
|
||||
void vnt_set_channel(struct vnt_private *priv, u32 connection_channel);
|
||||
void vnt_set_rspinf(struct vnt_private *priv, u8 bb_type);
|
||||
void vnt_update_ifs(struct vnt_private *priv);
|
||||
void vnt_update_top_rates(struct vnt_private *priv);
|
||||
int vnt_ofdm_min_rate(struct vnt_private *priv);
|
||||
void vnt_adjust_tsf(struct vnt_private *priv, u8 rx_rate,
|
||||
u64 time_stamp, u64 local_tsf);
|
||||
bool vnt_get_current_tsf(struct vnt_private *priv, u64 *current_tsf);
|
||||
bool vnt_clear_current_tsf(struct vnt_private *priv);
|
||||
void vnt_reset_next_tbtt(struct vnt_private *priv, u16 beacon_interval);
|
||||
void vnt_update_next_tbtt(struct vnt_private *priv, u64 tsf,
|
||||
u16 beacon_interval);
|
||||
u64 vnt_get_next_tbtt(u64 tsf, u16 beacon_interval);
|
||||
u64 vnt_get_tsf_offset(u8 rx_rate, u64 tsf1, u64 tsf2);
|
||||
int vnt_radio_power_off(struct vnt_private *priv);
|
||||
int vnt_radio_power_on(struct vnt_private *priv);
|
||||
u8 vnt_get_pkt_type(struct vnt_private *priv);
|
||||
void vnt_set_bss_mode(struct vnt_private *priv);
|
||||
|
||||
#endif /* __CARD_H__ */
|
||||
|
|
Loading…
Reference in New Issue