Skip to content

Commit 6c14908

Browse files
opensource206gregkh
authored andcommitted
staging: vt6655: Type encoding info dropped from array name "cwRXBCNTSFOff"
array name "cwRXBCNTSFOff" 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> Link: https://lore.kernel.org/r/b66d2cfebc199c20ff05143185400b6afd351f5a.1698396278.git.opensource206@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent b83b736 commit 6c14908

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/staging/vt6655/card.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
/*--------------------- Static Variables --------------------------*/
5252

53-
static const unsigned short cwRXBCNTSFOff[MAX_RATE] = {
53+
static const unsigned short rx_bcn_tsf_off[MAX_RATE] = {
5454
17, 17, 17, 17, 34, 23, 17, 11, 8, 5, 4, 3};
5555

5656
/*--------------------- Static Functions --------------------------*/
@@ -712,7 +712,7 @@ u64 CARDqGetTSFOffset(unsigned char byRxRate, u64 qwTSF1, u64 qwTSF2)
712712
{
713713
unsigned short wRxBcnTSFOffst;
714714

715-
wRxBcnTSFOffst = cwRXBCNTSFOff[byRxRate % MAX_RATE];
715+
wRxBcnTSFOffst = rx_bcn_tsf_off[byRxRate % MAX_RATE];
716716

717717
qwTSF2 += (u64)wRxBcnTSFOffst;
718718

0 commit comments

Comments
 (0)