aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/libertas/dev.h
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2009-05-22 20:01:21 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-06-03 14:05:09 -0400
commit5fd164e96cb9dc111f75468378de38c67b0fd161 (patch)
treeeeb4ec9dd3b2f1b034c1fc1c80b469de0c9275f7 /drivers/net/wireless/libertas/dev.h
parentd77b034f62d4b8c6c39450d99de224b9b2c5debb (diff)
libertas: simplify and clean up association/start/join setup
Some of the parameters for association/join/start commands aren't used (like the FH and CF IEs for IBSS, and the FH IE for BSS), so get rid of their unions to reduce indirection. Also clean up structure names for kernel style. Signed-off-by: Dan Williams <dcbw@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/dev.h')
-rw-r--r--drivers/net/wireless/libertas/dev.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/libertas/dev.h b/drivers/net/wireless/libertas/dev.h
index a4455ec7c354..d0de8c70f8c9 100644
--- a/drivers/net/wireless/libertas/dev.h
+++ b/drivers/net/wireless/libertas/dev.h
@@ -340,7 +340,7 @@ struct bss_descriptor {
340 u32 rssi; 340 u32 rssi;
341 u32 channel; 341 u32 channel;
342 u16 beaconperiod; 342 u16 beaconperiod;
343 u32 atimwindow; 343 __le16 atimwindow;
344 344
345 /* IW_MODE_AUTO, IW_MODE_ADHOC, IW_MODE_INFRA */ 345 /* IW_MODE_AUTO, IW_MODE_ADHOC, IW_MODE_INFRA */
346 u8 mode; 346 u8 mode;
@@ -350,8 +350,8 @@ struct bss_descriptor {
350 350
351 unsigned long last_scanned; 351 unsigned long last_scanned;
352 352
353 union ieeetypes_phyparamset phyparamset; 353 union ieee_phy_param_set phy;
354 union IEEEtypes_ssparamset ssparamset; 354 union ieee_ss_param_set ss;
355 355
356 struct ieeetypes_countryinfofullset countryinfo; 356 struct ieeetypes_countryinfofullset countryinfo;
357 357