diff options
author | Tim Gardner <tim.gardner@canonical.com> | 2008-10-14 12:38:03 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-10-31 19:00:24 -0400 |
commit | 5c7f9b7363bfd10e40cf1a28dfc9048417df7028 (patch) | |
tree | d1e346e54767b1f8573255534f966b0d3dbc928e /drivers/net/wireless/ipw2200.c | |
parent | c12abae333ac550acacf9d324ed54b7d17ead0c0 (diff) |
ipw2x00: change default policy for auto-associate
Do not attempt association until directed to do so by a user space
application. In particular, this avoids race conditions with
NetworkManager association state.
Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
Acked-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ipw2200.c')
-rw-r--r-- | drivers/net/wireless/ipw2200.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ipw2200.c b/drivers/net/wireless/ipw2200.c index 13633d8274a3..6ec6de2960ee 100644 --- a/drivers/net/wireless/ipw2200.c +++ b/drivers/net/wireless/ipw2200.c | |||
@@ -87,7 +87,7 @@ static int channel = 0; | |||
87 | static int mode = 0; | 87 | static int mode = 0; |
88 | 88 | ||
89 | static u32 ipw_debug_level; | 89 | static u32 ipw_debug_level; |
90 | static int associate = 1; | 90 | static int associate; |
91 | static int auto_create = 1; | 91 | static int auto_create = 1; |
92 | static int led = 0; | 92 | static int led = 0; |
93 | static int disable = 0; | 93 | static int disable = 0; |
@@ -11913,7 +11913,7 @@ module_param(disable, int, 0444); | |||
11913 | MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])"); | 11913 | MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])"); |
11914 | 11914 | ||
11915 | module_param(associate, int, 0444); | 11915 | module_param(associate, int, 0444); |
11916 | MODULE_PARM_DESC(associate, "auto associate when scanning (default on)"); | 11916 | MODULE_PARM_DESC(associate, "auto associate when scanning (default off)"); |
11917 | 11917 | ||
11918 | module_param(auto_create, int, 0444); | 11918 | module_param(auto_create, int, 0444); |
11919 | MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)"); | 11919 | MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)"); |