diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2008-10-07 21:37:30 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-10-31 19:00:04 -0400 |
commit | 3195c1f3499912b207ae600968488759b16037fc (patch) | |
tree | 88c1c56a4c863a64fbee7514195da3797e56b5a0 /drivers/net/wireless/iwlwifi/iwl-dev.h | |
parent | 5d664a41a0a8c612f66bcb3c2a6f395e9afa6beb (diff) |
iwlwifi: refactor rxon time command
This patch refactors rxon time command. It removes the usage of union tsf
in favor of u64 value and hopefully makes code more readable. There are
no functional changes in this patch.
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-dev.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-dev.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index 21258443141e..34306b6798e2 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h | |||
@@ -275,7 +275,6 @@ struct iwl_cmd { | |||
275 | u16 val16; | 275 | u16 val16; |
276 | u32 val32; | 276 | u32 val32; |
277 | struct iwl4965_bt_cmd bt; | 277 | struct iwl4965_bt_cmd bt; |
278 | struct iwl4965_rxon_time_cmd rxon_time; | ||
279 | struct iwl_powertable_cmd powertable; | 278 | struct iwl_powertable_cmd powertable; |
280 | struct iwl_qosparam_cmd qosparam; | 279 | struct iwl_qosparam_cmd qosparam; |
281 | struct iwl_tx_cmd tx; | 280 | struct iwl_tx_cmd tx; |
@@ -851,7 +850,7 @@ struct iwl_priv { | |||
851 | u8 ucode_write_complete; /* the image write is complete */ | 850 | u8 ucode_write_complete; /* the image write is complete */ |
852 | 851 | ||
853 | 852 | ||
854 | struct iwl4965_rxon_time_cmd rxon_timing; | 853 | struct iwl_rxon_time_cmd rxon_timing; |
855 | 854 | ||
856 | /* We declare this const so it can only be | 855 | /* We declare this const so it can only be |
857 | * changed via explicit cast within the | 856 | * changed via explicit cast within the |