diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2008-04-15 19:01:40 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-04-16 16:00:00 -0400 |
commit | 66c73db7c6f7672e40c0bb1d2689f2d0d0922aad (patch) | |
tree | 0a3afbd37482fccf99f179388673e2011aec5661 /drivers/net/wireless/iwlwifi/iwl-4965-commands.h | |
parent | ec35cf2afb0d807c39188e3a9962ffa51f603024 (diff) |
iwlwifi: move the creation of LQ host command to iwlcore
This patch moves creation of LQ host command to iwlcore
from previous location in rate scaling.
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Ron Rindjunsky <ron.rindjunsky@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-4965-commands.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-4965-commands.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-4965-commands.h b/drivers/net/wireless/iwlwifi/iwl-4965-commands.h index 7aa7f0be8963..3bcd107e2d71 100644 --- a/drivers/net/wireless/iwlwifi/iwl-4965-commands.h +++ b/drivers/net/wireless/iwlwifi/iwl-4965-commands.h | |||
@@ -1413,11 +1413,11 @@ struct iwl4965_txpowertable_cmd { | |||
1413 | 1413 | ||
1414 | 1414 | ||
1415 | /** | 1415 | /** |
1416 | * struct iwl4965_link_qual_general_params | 1416 | * struct iwl_link_qual_general_params |
1417 | * | 1417 | * |
1418 | * Used in REPLY_TX_LINK_QUALITY_CMD | 1418 | * Used in REPLY_TX_LINK_QUALITY_CMD |
1419 | */ | 1419 | */ |
1420 | struct iwl4965_link_qual_general_params { | 1420 | struct iwl_link_qual_general_params { |
1421 | u8 flags; | 1421 | u8 flags; |
1422 | 1422 | ||
1423 | /* No entries at or above this (driver chosen) index contain MIMO */ | 1423 | /* No entries at or above this (driver chosen) index contain MIMO */ |
@@ -1444,11 +1444,11 @@ struct iwl4965_link_qual_general_params { | |||
1444 | } __attribute__ ((packed)); | 1444 | } __attribute__ ((packed)); |
1445 | 1445 | ||
1446 | /** | 1446 | /** |
1447 | * struct iwl4965_link_qual_agg_params | 1447 | * struct iwl_link_qual_agg_params |
1448 | * | 1448 | * |
1449 | * Used in REPLY_TX_LINK_QUALITY_CMD | 1449 | * Used in REPLY_TX_LINK_QUALITY_CMD |
1450 | */ | 1450 | */ |
1451 | struct iwl4965_link_qual_agg_params { | 1451 | struct iwl_link_qual_agg_params { |
1452 | 1452 | ||
1453 | /* Maximum number of uSec in aggregation. | 1453 | /* Maximum number of uSec in aggregation. |
1454 | * Driver should set this to 4000 (4 milliseconds). */ | 1454 | * Driver should set this to 4000 (4 milliseconds). */ |
@@ -1658,14 +1658,14 @@ struct iwl4965_link_qual_agg_params { | |||
1658 | * legacy), and then repeat the search process. | 1658 | * legacy), and then repeat the search process. |
1659 | * | 1659 | * |
1660 | */ | 1660 | */ |
1661 | struct iwl4965_link_quality_cmd { | 1661 | struct iwl_link_quality_cmd { |
1662 | 1662 | ||
1663 | /* Index of destination/recipient station in uCode's station table */ | 1663 | /* Index of destination/recipient station in uCode's station table */ |
1664 | u8 sta_id; | 1664 | u8 sta_id; |
1665 | u8 reserved1; | 1665 | u8 reserved1; |
1666 | __le16 control; /* not used */ | 1666 | __le16 control; /* not used */ |
1667 | struct iwl4965_link_qual_general_params general_params; | 1667 | struct iwl_link_qual_general_params general_params; |
1668 | struct iwl4965_link_qual_agg_params agg_params; | 1668 | struct iwl_link_qual_agg_params agg_params; |
1669 | 1669 | ||
1670 | /* | 1670 | /* |
1671 | * Rate info; when using rate-scaling, Tx command's initial_rate_index | 1671 | * Rate info; when using rate-scaling, Tx command's initial_rate_index |