mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 05:26:07 +00:00
staging: vt6655: Type encoding info dropped from function name "CARDqGetTSFOffset"
function name "CARDqGetTSFOffset" updated like below: a.type encoding info dropped from name b.camelcase name replaced by snakecase Issue found by checkpatch Signed-off-by: Pavan Bobba <opensource206@gmail.com> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/b6b86bd65669cae59ca10171ecee8aa4a13c4a26.1698730318.git.opensource206@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
efafcb553e
commit
314b805e69
@ -10,7 +10,7 @@
|
||||
* CARDvUpdateBasicTopRate - Update BasicTopRate
|
||||
* CARDbAddBasicRate - Add to BasicRateSet
|
||||
* CARDbIsOFDMinBasicRate - Check if any OFDM rate is in BasicRateSet
|
||||
* CARDqGetTSFOffset - Calculate TSFOffset
|
||||
* card_get_tsf_offset - Calculate TSFOffset
|
||||
* vt6655_get_current_tsf - Read Current NIC TSF counter
|
||||
* CARDqGetNextTBTT - Calculate Next Beacon TSF counter
|
||||
* CARDvSetFirstNextTBTT - Set NIC Beacon time
|
||||
@ -296,7 +296,7 @@ bool card_update_tsf(struct vnt_private *priv, unsigned char rx_rate,
|
||||
local_tsf = vt6655_get_current_tsf(priv);
|
||||
|
||||
if (bss_timestamp != local_tsf) {
|
||||
tsf_offset = CARDqGetTSFOffset(rx_rate, bss_timestamp,
|
||||
tsf_offset = card_get_tsf_offset(rx_rate, bss_timestamp,
|
||||
local_tsf);
|
||||
/* adjust TSF, HW's TSF add TSF Offset reg */
|
||||
tsf_offset = le64_to_cpu(tsf_offset);
|
||||
@ -708,7 +708,7 @@ unsigned char card_get_pkt_type(struct vnt_private *priv)
|
||||
*
|
||||
* Return Value: TSF Offset value
|
||||
*/
|
||||
u64 CARDqGetTSFOffset(unsigned char rx_rate, u64 qwTSF1, u64 qwTSF2)
|
||||
u64 card_get_tsf_offset(unsigned char rx_rate, u64 qwTSF1, u64 qwTSF2)
|
||||
{
|
||||
unsigned short wRxBcnTSFOffst;
|
||||
|
||||
|
@ -48,7 +48,7 @@ void CARDvUpdateNextTBTT(struct vnt_private *priv, u64 qwTSF,
|
||||
unsigned short wBeaconInterval);
|
||||
u64 vt6655_get_current_tsf(struct vnt_private *priv);
|
||||
u64 CARDqGetNextTBTT(u64 qwTSF, unsigned short wBeaconInterval);
|
||||
u64 CARDqGetTSFOffset(unsigned char rx_rate, u64 qwTSF1, u64 qwTSF2);
|
||||
u64 card_get_tsf_offset(unsigned char rx_rate, u64 qwTSF1, u64 qwTSF2);
|
||||
unsigned char card_get_pkt_type(struct vnt_private *priv);
|
||||
void CARDvSafeResetTx(struct vnt_private *priv);
|
||||
void CARDvSafeResetRx(struct vnt_private *priv);
|
||||
|
Loading…
x
Reference in New Issue
Block a user