aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/orinoco.h
diff options
context:
space:
mode:
authorDavid Kilroy <kilroyd@gmail.com>2008-08-21 18:27:59 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-08-22 19:28:06 -0400
commit4ae6ee2d72e4904909d63c6ebb0240b254b72e85 (patch)
tree5ce5b36b92b31617115b5bb77a7105c909050854 /drivers/net/wireless/orinoco.h
parent01632fa4af34addf78ce999eabb4430f33942ee2 (diff)
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.h2
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 {
100 /* Configuration paramaters */ 100 /* Configuration paramaters */
101 u32 iw_mode; 101 u32 iw_mode;
102 int prefer_port3; 102 int prefer_port3;
103 u16 wep_on, wep_restrict, tx_key; 103 u16 encode_alg, wep_restrict, tx_key;
104 struct orinoco_key keys[ORINOCO_MAX_KEYS]; 104 struct orinoco_key keys[ORINOCO_MAX_KEYS];
105 int bitratemode; 105 int bitratemode;
106 char nick[IW_ESSID_MAX_SIZE+1]; 106 char nick[IW_ESSID_MAX_SIZE+1];