diff options
Diffstat (limited to 'drivers/net/wireless/airo.c')
-rw-r--r-- | drivers/net/wireless/airo.c | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/drivers/net/wireless/airo.c b/drivers/net/wireless/airo.c index 4e5c7a11f04a..a70c512f05d2 100644 --- a/drivers/net/wireless/airo.c +++ b/drivers/net/wireless/airo.c | |||
@@ -242,9 +242,8 @@ static int airo_perm = 0555; | |||
242 | static int proc_perm = 0644; | 242 | static int proc_perm = 0644; |
243 | 243 | ||
244 | MODULE_AUTHOR("Benjamin Reed"); | 244 | MODULE_AUTHOR("Benjamin Reed"); |
245 | MODULE_DESCRIPTION("Support for Cisco/Aironet 802.11 wireless ethernet \ | 245 | MODULE_DESCRIPTION("Support for Cisco/Aironet 802.11 wireless ethernet cards. " |
246 | cards. Direct support for ISA/PCI/MPI cards and support \ | 246 | "Direct support for ISA/PCI/MPI cards and support for PCMCIA when used with airo_cs."); |
247 | for PCMCIA when used with airo_cs."); | ||
248 | MODULE_LICENSE("Dual BSD/GPL"); | 247 | MODULE_LICENSE("Dual BSD/GPL"); |
249 | MODULE_SUPPORTED_DEVICE("Aironet 4500, 4800 and Cisco 340/350"); | 248 | MODULE_SUPPORTED_DEVICE("Aironet 4500, 4800 and Cisco 340/350"); |
250 | module_param_array(io, int, NULL, 0); | 249 | module_param_array(io, int, NULL, 0); |
@@ -252,18 +251,20 @@ module_param_array(irq, int, NULL, 0); | |||
252 | module_param_array(rates, int, NULL, 0); | 251 | module_param_array(rates, int, NULL, 0); |
253 | module_param_array(ssids, charp, NULL, 0); | 252 | module_param_array(ssids, charp, NULL, 0); |
254 | module_param(auto_wep, int, 0); | 253 | module_param(auto_wep, int, 0); |
255 | MODULE_PARM_DESC(auto_wep, "If non-zero, the driver will keep looping through \ | 254 | MODULE_PARM_DESC(auto_wep, |
256 | the authentication options until an association is made. The value of \ | 255 | "If non-zero, the driver will keep looping through the authentication options until an association is made. " |
257 | auto_wep is number of the wep keys to check. A value of 2 will try using \ | 256 | "The value of auto_wep is number of the wep keys to check. " |
258 | the key at index 0 and index 1."); | 257 | "A value of 2 will try using the key at index 0 and index 1."); |
259 | module_param(aux_bap, int, 0); | 258 | module_param(aux_bap, int, 0); |
260 | MODULE_PARM_DESC(aux_bap, "If non-zero, the driver will switch into a mode \ | 259 | MODULE_PARM_DESC(aux_bap, |
261 | than seems to work better for older cards with some older buses. Before \ | 260 | "If non-zero, the driver will switch into a mode that seems to work better for older cards with some older buses. " |
262 | switching it checks that the switch is needed."); | 261 | "Before switching it checks that the switch is needed."); |
263 | module_param(maxencrypt, int, 0); | 262 | module_param(maxencrypt, int, 0); |
264 | MODULE_PARM_DESC(maxencrypt, "The maximum speed that the card can do \ | 263 | MODULE_PARM_DESC(maxencrypt, |
265 | encryption. Units are in 512kbs. Zero (default) means there is no limit. \ | 264 | "The maximum speed that the card can do encryption. " |
266 | Older cards used to be limited to 2mbs (4)."); | 265 | "Units are in 512kbs. " |
266 | "Zero (default) means there is no limit. " | ||
267 | "Older cards used to be limited to 2mbs (4)."); | ||
267 | module_param(adhoc, int, 0); | 268 | module_param(adhoc, int, 0); |
268 | MODULE_PARM_DESC(adhoc, "If non-zero, the card will start in adhoc mode."); | 269 | MODULE_PARM_DESC(adhoc, "If non-zero, the card will start in adhoc mode."); |
269 | module_param(probe, int, 0); | 270 | module_param(probe, int, 0); |