Commit 3b27f646 authored by Yujia Qiao's avatar Yujia Qiao Committed by Greg Kroah-Hartman

Staging: vt6655: Replace a camel case variable name

Replace camel case variable names with snake case in baseband.c.
Signed-off-by: default avatarYujia Qiao <rapiz@foxmail.com>
Link: https://lore.kernel.org/r/tencent_21CFC58E6013D47A55691E4F4C6C4CF20706@qq.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7c3a0635
...@@ -1683,7 +1683,7 @@ static unsigned char byVT3253B0_AGC[CB_VT3253B0_AGC][2] = { ...@@ -1683,7 +1683,7 @@ static unsigned char byVT3253B0_AGC[CB_VT3253B0_AGC][2] = {
{0xF0, 0x00}, {0xF0, 0x00},
}; };
static const unsigned short awcFrameTime[MAX_RATE] = { static const unsigned short awc_frame_time[MAX_RATE] = {
10, 20, 55, 110, 24, 36, 48, 72, 96, 144, 192, 216 10, 20, 55, 110, 24, 36, 48, 72, 96, 144, 192, 216
}; };
...@@ -1716,7 +1716,7 @@ unsigned int bb_get_frame_time(unsigned char by_preamble_type, ...@@ -1716,7 +1716,7 @@ unsigned int bb_get_frame_time(unsigned char by_preamble_type,
if (rate_idx > RATE_54M) if (rate_idx > RATE_54M)
return 0; return 0;
rate = (unsigned int)awcFrameTime[rate_idx]; rate = (unsigned int)awc_frame_time[rate_idx];
if (rate_idx <= 3) { /* CCK mode */ if (rate_idx <= 3) { /* CCK mode */
if (by_preamble_type == 1) /* Short */ if (by_preamble_type == 1) /* Short */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment