aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/airo.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2011-05-23 12:12:26 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2011-05-23 12:12:26 -0400
commit57d19e80f459dd845fb3cfeba8e6df8471bac142 (patch)
tree8254766715720228db3d50f1ef3c7fe003c06d65 /drivers/net/wireless/airo.c
parentee9ec4f82049c678373a611ce20ac67fe9ad836e (diff)
parente64851f5a0ad6ec991f74ebb3108c35aa0323d5f (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (39 commits) b43: fix comment typo reqest -> request Haavard Skinnemoen has left Atmel cris: typo in mach-fs Makefile Kconfig: fix copy/paste-ism for dell-wmi-aio driver doc: timers-howto: fix a typo ("unsgined") perf: Only include annotate.h once in tools/perf/util/ui/browsers/annotate.c md, raid5: Fix spelling error in comment ('Ofcourse' --> 'Of course'). treewide: fix a few typos in comments regulator: change debug statement be consistent with the style of the rest Revert "arm: mach-u300/gpio: Fix mem_region resource size miscalculations" audit: acquire creds selectively to reduce atomic op overhead rtlwifi: don't touch with treewide double semicolon removal treewide: cleanup continuations and remove logging message whitespace ath9k_hw: don't touch with treewide double semicolon removal include/linux/leds-regulator.h: fix syntax in example code tty: fix typo in descripton of tty_termios_encode_baud_rate xtensa: remove obsolete BKL kernel option from defconfig m68k: fix comment typo 'occcured' arch:Kconfig.locks Remove unused config option. treewide: remove extra semicolons ...
Diffstat (limited to 'drivers/net/wireless/airo.c')
-rw-r--r--drivers/net/wireless/airo.c27
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;
242static int proc_perm = 0644; 242static int proc_perm = 0644;
243 243
244MODULE_AUTHOR("Benjamin Reed"); 244MODULE_AUTHOR("Benjamin Reed");
245MODULE_DESCRIPTION("Support for Cisco/Aironet 802.11 wireless ethernet \ 245MODULE_DESCRIPTION("Support for Cisco/Aironet 802.11 wireless ethernet cards. "
246cards. 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.");
247for PCMCIA when used with airo_cs.");
248MODULE_LICENSE("Dual BSD/GPL"); 247MODULE_LICENSE("Dual BSD/GPL");
249MODULE_SUPPORTED_DEVICE("Aironet 4500, 4800 and Cisco 340/350"); 248MODULE_SUPPORTED_DEVICE("Aironet 4500, 4800 and Cisco 340/350");
250module_param_array(io, int, NULL, 0); 249module_param_array(io, int, NULL, 0);
@@ -252,18 +251,20 @@ module_param_array(irq, int, NULL, 0);
252module_param_array(rates, int, NULL, 0); 251module_param_array(rates, int, NULL, 0);
253module_param_array(ssids, charp, NULL, 0); 252module_param_array(ssids, charp, NULL, 0);
254module_param(auto_wep, int, 0); 253module_param(auto_wep, int, 0);
255MODULE_PARM_DESC(auto_wep, "If non-zero, the driver will keep looping through \ 254MODULE_PARM_DESC(auto_wep,
256the 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. "
257auto_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. "
258the key at index 0 and index 1."); 257 "A value of 2 will try using the key at index 0 and index 1.");
259module_param(aux_bap, int, 0); 258module_param(aux_bap, int, 0);
260MODULE_PARM_DESC(aux_bap, "If non-zero, the driver will switch into a mode \ 259MODULE_PARM_DESC(aux_bap,
261than 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. "
262switching it checks that the switch is needed."); 261 "Before switching it checks that the switch is needed.");
263module_param(maxencrypt, int, 0); 262module_param(maxencrypt, int, 0);
264MODULE_PARM_DESC(maxencrypt, "The maximum speed that the card can do \ 263MODULE_PARM_DESC(maxencrypt,
265encryption. Units are in 512kbs. Zero (default) means there is no limit. \ 264 "The maximum speed that the card can do encryption. "
266Older 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).");
267module_param(adhoc, int, 0); 268module_param(adhoc, int, 0);
268MODULE_PARM_DESC(adhoc, "If non-zero, the card will start in adhoc mode."); 269MODULE_PARM_DESC(adhoc, "If non-zero, the card will start in adhoc mode.");
269module_param(probe, int, 0); 270module_param(probe, int, 0);