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

staging: vt6656: rf.c Fix typo error at3226*

In commit 78a650dc
there was a typo error

abyVT3226_InitTable -> at3226_init_table
abyVT3226D0_InitTable -> at3226d0_init_table

Shoud be vt3226_init_table and vt3226d0_init_table
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c49d7550
...@@ -354,7 +354,7 @@ static u8 al7230_channel_table2[CB_MAX_CHANNEL][3] = { ...@@ -354,7 +354,7 @@ static u8 al7230_channel_table2[CB_MAX_CHANNEL][3] = {
}; };
///{{RobertYu:20051111 ///{{RobertYu:20051111
static u8 at3226_init_table[CB_VT3226_INIT_SEQ][3] = { static u8 vt3226_init_table[CB_VT3226_INIT_SEQ][3] = {
{0x03, 0xFF, 0x80}, {0x03, 0xFF, 0x80},
{0x02, 0x82, 0xA1}, {0x02, 0x82, 0xA1},
{0x03, 0xC6, 0xA2}, {0x03, 0xC6, 0xA2},
...@@ -368,7 +368,7 @@ static u8 at3226_init_table[CB_VT3226_INIT_SEQ][3] = { ...@@ -368,7 +368,7 @@ static u8 at3226_init_table[CB_VT3226_INIT_SEQ][3] = {
{0x02, 0x00, 0x2A} {0x02, 0x00, 0x2A}
}; };
static u8 at3226d0_init_table[CB_VT3226_INIT_SEQ][3] = { static u8 vt3226d0_init_table[CB_VT3226_INIT_SEQ][3] = {
{0x03, 0xFF, 0x80}, {0x03, 0xFF, 0x80},
{0x03, 0x02, 0x21}, //RobertYu:20060327 {0x03, 0x02, 0x21}, //RobertYu:20060327
{0x03, 0xC6, 0xA2}, {0x03, 0xC6, 0xA2},
...@@ -1021,7 +1021,7 @@ void vnt_rf_table_download(struct vnt_private *priv) ...@@ -1021,7 +1021,7 @@ void vnt_rf_table_download(struct vnt_private *priv)
length1 = CB_VT3226_INIT_SEQ * 3; length1 = CB_VT3226_INIT_SEQ * 3;
length2 = CB_MAX_CHANNEL_24G * 3; length2 = CB_MAX_CHANNEL_24G * 3;
length3 = CB_MAX_CHANNEL_24G * 3; length3 = CB_MAX_CHANNEL_24G * 3;
addr1 = &at3226_init_table[0][0]; addr1 = &vt3226_init_table[0][0];
addr2 = &vt3226_channel_table0[0][0]; addr2 = &vt3226_channel_table0[0][0];
addr3 = &vt3226_channel_table1[0][0]; addr3 = &vt3226_channel_table1[0][0];
break; break;
...@@ -1029,7 +1029,7 @@ void vnt_rf_table_download(struct vnt_private *priv) ...@@ -1029,7 +1029,7 @@ void vnt_rf_table_download(struct vnt_private *priv)
length1 = CB_VT3226_INIT_SEQ * 3; length1 = CB_VT3226_INIT_SEQ * 3;
length2 = CB_MAX_CHANNEL_24G * 3; length2 = CB_MAX_CHANNEL_24G * 3;
length3 = CB_MAX_CHANNEL_24G * 3; length3 = CB_MAX_CHANNEL_24G * 3;
addr1 = &at3226d0_init_table[0][0]; addr1 = &vt3226d0_init_table[0][0];
addr2 = &vt3226_channel_table0[0][0]; addr2 = &vt3226_channel_table0[0][0];
addr3 = &vt3226_channel_table1[0][0]; addr3 = &vt3226_channel_table1[0][0];
break; break;
......
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