Commit 231c6f13 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: baseband.c rename awcFrameTime to vnt_frame_time

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c2ad078b
...@@ -123,7 +123,7 @@ static u8 vnt_vt3184_vt3226d0[] = { ...@@ -123,7 +123,7 @@ static u8 vnt_vt3184_vt3226d0[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /* 0xff */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /* 0xff */
}; };
static const u16 awcFrameTime[MAX_RATE] = { static const u16 vnt_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
}; };
...@@ -152,7 +152,7 @@ unsigned int vnt_get_frame_time(u8 preamble_type, u8 pkt_type, ...@@ -152,7 +152,7 @@ unsigned int vnt_get_frame_time(u8 preamble_type, u8 pkt_type,
if (tx_rate > RATE_54M) if (tx_rate > RATE_54M)
return 0; return 0;
rate = (unsigned int)awcFrameTime[tx_rate]; rate = (unsigned int)vnt_frame_time[tx_rate];
if (tx_rate <= 3) { if (tx_rate <= 3) {
if (preamble_type == 1) if (preamble_type == 1)
......
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