diff options
author | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2010-07-14 11:07:27 -0400 |
---|---|---|
committer | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2010-07-23 11:40:47 -0400 |
commit | 325322ee34d726bff922853d509e135c8d262e2f (patch) | |
tree | 543f6638b7b2a7b19d4c082e0f9f89fa6094c25f /drivers/net/wireless/iwlwifi/iwl-agn-lib.c | |
parent | 7a17a33c0da37f8d24222c967550d19dabf13617 (diff) |
iwlagn: add statistic notification structure for WiFi/BT devices
If its WiFi/BT combo device, the statistics notification sent by
uCode will include the additional BT related statistics counters.
Adding new data structure to support the new layout.
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-agn-lib.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn-lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-lib.c b/drivers/net/wireless/iwlwifi/iwl-agn-lib.c index 74623e0d535f..dda71cd9aab1 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-lib.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-lib.c | |||
@@ -364,7 +364,7 @@ void iwlagn_temperature(struct iwl_priv *priv) | |||
364 | { | 364 | { |
365 | /* store temperature from statistics (in Celsius) */ | 365 | /* store temperature from statistics (in Celsius) */ |
366 | priv->temperature = | 366 | priv->temperature = |
367 | le32_to_cpu(priv->_agn.statistics.general.temperature); | 367 | le32_to_cpu(priv->_agn.statistics.general.common.temperature); |
368 | iwl_tt_handler(priv); | 368 | iwl_tt_handler(priv); |
369 | } | 369 | } |
370 | 370 | ||