diff options
author | David Kilroy <kilroyd@gmail.com> | 2008-08-21 23:27:59 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-08-22 19:28:06 -0400 |
commit | 4ae6ee2d72e4904909d63c6ebb0240b254b72e85 (patch) | |
tree | 5ce5b36b92b31617115b5bb77a7105c909050854 /drivers/net/wireless/orinoco.h | |
parent | 01632fa4af34addf78ce999eabb4430f33942ee2 (diff) | |
download | linux-stable-4ae6ee2d72e4904909d63c6ebb0240b254b72e85.tar.gz linux-stable-4ae6ee2d72e4904909d63c6ebb0240b254b72e85.tar.bz2 linux-stable-4ae6ee2d72e4904909d63c6ebb0240b254b72e85.zip |
orinoco: Don't use boolean parameter to record encoding type
For WPA support we need to encode NONE, WEP and TKIP in the encoding
parameter. In anticipation of this we need to change the usage away from
the current boolean usage.
Signed-off-by: David Kilroy <kilroyd@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/orinoco.h')
-rw-r--r-- | drivers/net/wireless/orinoco.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/orinoco.h b/drivers/net/wireless/orinoco.h index f510994ea9fe..5605fd30b81d 100644 --- a/drivers/net/wireless/orinoco.h +++ b/drivers/net/wireless/orinoco.h @@ -100,7 +100,7 @@ struct orinoco_private { /* Configuration paramaters */ u32 iw_mode; int prefer_port3; - u16 wep_on, wep_restrict, tx_key; + u16 encode_alg, wep_restrict, tx_key; struct orinoco_key keys[ORINOCO_MAX_KEYS]; int bitratemode; char nick[IW_ESSID_MAX_SIZE+1]; |