Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging:vt6656:card.c: fix camel case issue

Fix "Avoid camel case" issue thrown by checkpatch.pl

Signed-off-by: Rithvik Patibandla <rithvikp98@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Rithvik Patibandla and committed by
Greg Kroah-Hartman
e7c85655 6d898d69

+3 -3
+3 -3
drivers/staging/vt6656/card.c
··· 46 46 #include "key.h" 47 47 #include "usbpipe.h" 48 48 49 - /* const u16 cwRXBCNTSFOff[MAX_RATE] = 49 + /* const u16 cw_rxbcntsf_off[MAX_RATE] = 50 50 * {17, 34, 96, 192, 34, 23, 17, 11, 8, 5, 4, 3}; 51 51 */ 52 52 53 - static const u16 cwRXBCNTSFOff[MAX_RATE] = { 53 + static const u16 cw_rxbcntsf_off[MAX_RATE] = { 54 54 192, 96, 34, 17, 34, 23, 17, 11, 8, 5, 4, 3 55 55 }; 56 56 ··· 504 504 u64 tsf_offset = 0; 505 505 u16 rx_bcn_offset; 506 506 507 - rx_bcn_offset = cwRXBCNTSFOff[rx_rate % MAX_RATE]; 507 + rx_bcn_offset = cw_rxbcntsf_off[rx_rate % MAX_RATE]; 508 508 509 509 tsf2 += (u64)rx_bcn_offset; 510 510