diff options
author | Jouni Malinen <jkmaline@cc.hut.fi> | 2005-05-12 22:54:16 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-05-12 22:54:16 -0400 |
commit | ff1d2767d5a43c85f944e86a45284b721f66196c (patch) | |
tree | 91c1b6dd20bd772bc112c0012830678b46b69604 /drivers/net/wireless/wavelan_cs.h | |
parent | 88d7bd8cb9eb8d64bf7997600b0d64f7834047c5 (diff) |
Add HostAP wireless driver.
Includes minor cleanups from Adrian Bunk <bunk@stusta.de>.
Diffstat (limited to 'drivers/net/wireless/wavelan_cs.h')
-rw-r--r-- | drivers/net/wireless/wavelan_cs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/wavelan_cs.h b/drivers/net/wireless/wavelan_cs.h index 29cff6daf860..fabc63ee153c 100644 --- a/drivers/net/wireless/wavelan_cs.h +++ b/drivers/net/wireless/wavelan_cs.h | |||
@@ -62,7 +62,7 @@ | |||
62 | * like DEC RoamAbout, or Digital Ocean, Epson, ...), you must modify this | 62 | * like DEC RoamAbout, or Digital Ocean, Epson, ...), you must modify this |
63 | * part to accommodate your hardware... | 63 | * part to accommodate your hardware... |
64 | */ | 64 | */ |
65 | const unsigned char MAC_ADDRESSES[][3] = | 65 | static const unsigned char MAC_ADDRESSES[][3] = |
66 | { | 66 | { |
67 | { 0x08, 0x00, 0x0E }, /* AT&T Wavelan (standard) & DEC RoamAbout */ | 67 | { 0x08, 0x00, 0x0E }, /* AT&T Wavelan (standard) & DEC RoamAbout */ |
68 | { 0x08, 0x00, 0x6A }, /* AT&T Wavelan (alternate) */ | 68 | { 0x08, 0x00, 0x6A }, /* AT&T Wavelan (alternate) */ |
@@ -79,14 +79,14 @@ const unsigned char MAC_ADDRESSES[][3] = | |||
79 | * (as read in the offset register of the dac area). | 79 | * (as read in the offset register of the dac area). |
80 | * Used to map channel numbers used by `wfreqsel' to frequencies | 80 | * Used to map channel numbers used by `wfreqsel' to frequencies |
81 | */ | 81 | */ |
82 | const short channel_bands[] = { 0x30, 0x58, 0x64, 0x7A, 0x80, 0xA8, | 82 | static const short channel_bands[] = { 0x30, 0x58, 0x64, 0x7A, 0x80, 0xA8, |
83 | 0xD0, 0xF0, 0xF8, 0x150 }; | 83 | 0xD0, 0xF0, 0xF8, 0x150 }; |
84 | 84 | ||
85 | /* Frequencies of the 1.0 modem (fixed frequencies). | 85 | /* Frequencies of the 1.0 modem (fixed frequencies). |
86 | * Use to map the PSA `subband' to a frequency | 86 | * Use to map the PSA `subband' to a frequency |
87 | * Note : all frequencies apart from the first one need to be multiplied by 10 | 87 | * Note : all frequencies apart from the first one need to be multiplied by 10 |
88 | */ | 88 | */ |
89 | const int fixed_bands[] = { 915e6, 2.425e8, 2.46e8, 2.484e8, 2.4305e8 }; | 89 | static const int fixed_bands[] = { 915e6, 2.425e8, 2.46e8, 2.484e8, 2.4305e8 }; |
90 | 90 | ||
91 | 91 | ||
92 | /*************************** PC INTERFACE ****************************/ | 92 | /*************************** PC INTERFACE ****************************/ |