aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ipw2200.c
diff options
context:
space:
mode:
authorZhu Yi <yi.zhu@intel.com>2006-01-24 03:38:08 -0500
committerJohn W. Linville <linville@tuxdriver.com>2006-01-30 20:35:35 -0500
commitbde37d037715bef4a67d58d00fecbe4c71836cab (patch)
tree6bac64a4ad48c7a3315cd69f3805ceea0dfaed8d /drivers/net/wireless/ipw2200.c
parent4644151b7208bec9522cad928a7105e0fc04a2b2 (diff)
[PATCH] ipw2200: Disable hwcrypto by default
After looking at the mailing list (and experiencing permanent driver lockups while using hwcrypto=1) I think that disabling this option by default would be better than otherwise. Signed-off-by: Andreas Happe <andreashappe@snikt.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ipw2200.c')
-rw-r--r--drivers/net/wireless/ipw2200.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ipw2200.c b/drivers/net/wireless/ipw2200.c
index fdb8065a8088..18e00fe8a218 100644
--- a/drivers/net/wireless/ipw2200.c
+++ b/drivers/net/wireless/ipw2200.c
@@ -56,7 +56,7 @@ static int auto_create = 1;
56static int led = 0; 56static int led = 0;
57static int disable = 0; 57static int disable = 0;
58static int bt_coexist = 0; 58static int bt_coexist = 0;
59static int hwcrypto = 1; 59static int hwcrypto = 0;
60static int roaming = 1; 60static int roaming = 1;
61static const char ipw_modes[] = { 61static const char ipw_modes[] = {
62 'a', 'b', 'g', '?' 62 'a', 'b', 'g', '?'
@@ -11304,7 +11304,7 @@ module_param(bt_coexist, int, 0444);
11304MODULE_PARM_DESC(bt_coexist, "enable bluetooth coexistence (default off)"); 11304MODULE_PARM_DESC(bt_coexist, "enable bluetooth coexistence (default off)");
11305 11305
11306module_param(hwcrypto, int, 0444); 11306module_param(hwcrypto, int, 0444);
11307MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default on)"); 11307MODULE_PARM_DESC(hwcrypto, "enable hardware crypto (default off)");
11308 11308
11309module_param(cmdlog, int, 0444); 11309module_param(cmdlog, int, 0444);
11310MODULE_PARM_DESC(cmdlog, 11310MODULE_PARM_DESC(cmdlog,