mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 15:13:44 -04:00
staging: vt6655: Type encoding info dropped from variable name "qwBSSTimestamp"
variable name "qwBSSTimestamp" 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/977e5e538610d28dce6a02a6d475ee336fc0899c.1698730318.git.opensource206@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
6025bef95f
commit
89abfc0ab5
@@ -280,7 +280,7 @@ bool card_set_phy_parameter(struct vnt_private *priv, u8 bb_type)
|
||||
* In:
|
||||
* priv - The adapter to be sync.
|
||||
* rx_rate - data rate of receive beacon
|
||||
* qwBSSTimestamp - Rx BCN's TSF
|
||||
* bss_timestamp - Rx BCN's TSF
|
||||
* qwLocalTSF - Local TSF
|
||||
* Out:
|
||||
* none
|
||||
@@ -288,15 +288,15 @@ bool card_set_phy_parameter(struct vnt_private *priv, u8 bb_type)
|
||||
* Return Value: none
|
||||
*/
|
||||
bool card_update_tsf(struct vnt_private *priv, unsigned char rx_rate,
|
||||
u64 qwBSSTimestamp)
|
||||
u64 bss_timestamp)
|
||||
{
|
||||
u64 local_tsf;
|
||||
u64 qwTSFOffset = 0;
|
||||
|
||||
local_tsf = vt6655_get_current_tsf(priv);
|
||||
|
||||
if (qwBSSTimestamp != local_tsf) {
|
||||
qwTSFOffset = CARDqGetTSFOffset(rx_rate, qwBSSTimestamp,
|
||||
if (bss_timestamp != local_tsf) {
|
||||
qwTSFOffset = CARDqGetTSFOffset(rx_rate, bss_timestamp,
|
||||
local_tsf);
|
||||
/* adjust TSF, HW's TSF add TSF Offset reg */
|
||||
qwTSFOffset = le64_to_cpu(qwTSFOffset);
|
||||
|
||||
@@ -55,7 +55,7 @@ void CARDvSafeResetRx(struct vnt_private *priv);
|
||||
void CARDbRadioPowerOff(struct vnt_private *priv);
|
||||
bool card_set_phy_parameter(struct vnt_private *priv, u8 bb_type);
|
||||
bool card_update_tsf(struct vnt_private *priv, unsigned char rx_rate,
|
||||
u64 qwBSSTimestamp);
|
||||
u64 bss_timestamp);
|
||||
bool CARDbSetBeaconPeriod(struct vnt_private *priv,
|
||||
unsigned short wBeaconInterval);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user