Skip to content

Commit 722de0e

Browse files
opensource206gregkh
authored andcommitted
staging: vt6655: replace camel case by snake case
Replace array name of camel case by snake case. Issue found by checkpatch Signed-off-by: Pavan Bobba <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 42f9bcf commit 722de0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/staging/vt6655/baseband.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ static const unsigned char by_vt3253_init_tab_rfmd[CB_VT3253_INIT_FOR_RFMD][2] =
499499
};
500500

501501
#define CB_VT3253B0_INIT_FOR_RFMD 256
502-
static const unsigned char byVT3253B0_RFMD[CB_VT3253B0_INIT_FOR_RFMD][2] = {
502+
static const unsigned char vt3253b0_rfmd[CB_VT3253B0_INIT_FOR_RFMD][2] = {
503503
{0x00, 0x31},
504504
{0x01, 0x00},
505505
{0x02, 0x00},
@@ -2005,8 +2005,8 @@ bool bb_vt3253_init(struct vnt_private *priv)
20052005
} else {
20062006
for (ii = 0; ii < CB_VT3253B0_INIT_FOR_RFMD; ii++)
20072007
result &= bb_write_embedded(priv,
2008-
byVT3253B0_RFMD[ii][0],
2009-
byVT3253B0_RFMD[ii][1]);
2008+
vt3253b0_rfmd[ii][0],
2009+
vt3253b0_rfmd[ii][1]);
20102010

20112011
for (ii = 0; ii < CB_VT3253B0_AGC_FOR_RFMD2959; ii++)
20122012
result &= bb_write_embedded(priv,

0 commit comments

Comments
 (0)