Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 121597
b: refs/heads/master
c: 5c7f9b7
h: refs/heads/master
i:
  121595: eb18919
v: v3
  • Loading branch information
Tim Gardner authored and John W. Linville committed Oct 31, 2008
1 parent 2bbbb92 commit 518e337
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c12abae333ac550acacf9d324ed54b7d17ead0c0
refs/heads/master: 5c7f9b7363bfd10e40cf1a28dfc9048417df7028
2 changes: 1 addition & 1 deletion trunk/Documentation/networking/README.ipw2200
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ Where the supported parameter are:
driver. If disabled, the driver will not attempt to scan
for and associate to a network until it has been configured with
one or more properties for the target network, for example configuring
the network SSID. Default is 1 (auto-associate)
the network SSID. Default is 0 (do not auto-associate)

Example: % modprobe ipw2200 associate=0

Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/net/wireless/ipw2100.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ MODULE_LICENSE("GPL");
static int debug = 0;
static int mode = 0;
static int channel = 0;
static int associate = 1;
static int associate = 0;
static int disable = 0;
#ifdef CONFIG_PM
static struct ipw2100_fw ipw2100_firmware;
Expand All @@ -201,7 +201,7 @@ module_param(disable, int, 0444);
MODULE_PARM_DESC(debug, "debug level");
MODULE_PARM_DESC(mode, "network mode (0=BSS,1=IBSS,2=Monitor)");
MODULE_PARM_DESC(channel, "channel");
MODULE_PARM_DESC(associate, "auto associate when scanning (default on)");
MODULE_PARM_DESC(associate, "auto associate when scanning (default off)");
MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");

static u32 ipw2100_debug_level = IPW_DL_NONE;
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/net/wireless/ipw2200.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static int channel = 0;
static int mode = 0;

static u32 ipw_debug_level;
static int associate = 1;
static int associate;
static int auto_create = 1;
static int led = 0;
static int disable = 0;
Expand Down Expand Up @@ -11913,7 +11913,7 @@ module_param(disable, int, 0444);
MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");

module_param(associate, int, 0444);
MODULE_PARM_DESC(associate, "auto associate when scanning (default on)");
MODULE_PARM_DESC(associate, "auto associate when scanning (default off)");

module_param(auto_create, int, 0444);
MODULE_PARM_DESC(auto_create, "auto create adhoc network (default on)");
Expand Down

0 comments on commit 518e337

Please sign in to comment.