diff options
Diffstat (limited to 'drivers/net/wireless/mwifiex/cfp.c')
-rw-r--r-- | drivers/net/wireless/mwifiex/cfp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/mwifiex/cfp.c b/drivers/net/wireless/mwifiex/cfp.c index d0cada5a29a0..f2e6de03805c 100644 --- a/drivers/net/wireless/mwifiex/cfp.c +++ b/drivers/net/wireless/mwifiex/cfp.c | |||
@@ -48,7 +48,7 @@ static u8 adhoc_rates_bg[BG_SUPPORTED_RATES] = { 0x82, 0x84, 0x8b, 0x96, | |||
48 | 48 | ||
49 | static u8 adhoc_rates_a[A_SUPPORTED_RATES] = { 0x8c, 0x12, 0x98, 0x24, | 49 | static u8 adhoc_rates_a[A_SUPPORTED_RATES] = { 0x8c, 0x12, 0x98, 0x24, |
50 | 0xb0, 0x48, 0x60, 0x6c, 0 }; | 50 | 0xb0, 0x48, 0x60, 0x6c, 0 }; |
51 | u8 supported_rates_a[A_SUPPORTED_RATES] = { 0x0c, 0x12, 0x18, 0x24, | 51 | static u8 supported_rates_a[A_SUPPORTED_RATES] = { 0x0c, 0x12, 0x18, 0x24, |
52 | 0xb0, 0x48, 0x60, 0x6c, 0 }; | 52 | 0xb0, 0x48, 0x60, 0x6c, 0 }; |
53 | static u16 mwifiex_data_rates[MWIFIEX_SUPPORTED_RATES_EXT] = { 0x02, 0x04, | 53 | static u16 mwifiex_data_rates[MWIFIEX_SUPPORTED_RATES_EXT] = { 0x02, 0x04, |
54 | 0x0B, 0x16, 0x00, 0x0C, 0x12, 0x18, | 54 | 0x0B, 0x16, 0x00, 0x0C, 0x12, 0x18, |
@@ -57,19 +57,19 @@ static u16 mwifiex_data_rates[MWIFIEX_SUPPORTED_RATES_EXT] = { 0x02, 0x04, | |||
57 | 0x75, 0x82, 0x0C, 0x1B, 0x36, 0x51, | 57 | 0x75, 0x82, 0x0C, 0x1B, 0x36, 0x51, |
58 | 0x6C, 0xA2, 0xD8, 0xF3, 0x10E, 0x00 }; | 58 | 0x6C, 0xA2, 0xD8, 0xF3, 0x10E, 0x00 }; |
59 | 59 | ||
60 | u8 supported_rates_b[B_SUPPORTED_RATES] = { 0x02, 0x04, 0x0b, 0x16, 0 }; | 60 | static u8 supported_rates_b[B_SUPPORTED_RATES] = { 0x02, 0x04, 0x0b, 0x16, 0 }; |
61 | 61 | ||
62 | u8 supported_rates_g[G_SUPPORTED_RATES] = { 0x0c, 0x12, 0x18, 0x24, | 62 | static u8 supported_rates_g[G_SUPPORTED_RATES] = { 0x0c, 0x12, 0x18, 0x24, |
63 | 0x30, 0x48, 0x60, 0x6c, 0 }; | 63 | 0x30, 0x48, 0x60, 0x6c, 0 }; |
64 | 64 | ||
65 | u8 supported_rates_bg[BG_SUPPORTED_RATES] = { 0x02, 0x04, 0x0b, 0x0c, | 65 | static u8 supported_rates_bg[BG_SUPPORTED_RATES] = { 0x02, 0x04, 0x0b, 0x0c, |
66 | 0x12, 0x16, 0x18, 0x24, 0x30, 0x48, | 66 | 0x12, 0x16, 0x18, 0x24, 0x30, 0x48, |
67 | 0x60, 0x6c, 0 }; | 67 | 0x60, 0x6c, 0 }; |
68 | 68 | ||
69 | u16 region_code_index[MWIFIEX_MAX_REGION_CODE] = { 0x10, 0x20, 0x30, | 69 | u16 region_code_index[MWIFIEX_MAX_REGION_CODE] = { 0x10, 0x20, 0x30, |
70 | 0x32, 0x40, 0x41, 0xff }; | 70 | 0x32, 0x40, 0x41, 0xff }; |
71 | 71 | ||
72 | u8 supported_rates_n[N_SUPPORTED_RATES] = { 0x02, 0x04, 0 }; | 72 | static u8 supported_rates_n[N_SUPPORTED_RATES] = { 0x02, 0x04, 0 }; |
73 | 73 | ||
74 | /* | 74 | /* |
75 | * This function maps an index in supported rates table into | 75 | * This function maps an index in supported rates table into |