diff options
author | Reinette Chatre <reinette.chatre@intel.com> | 2009-08-28 16:44:49 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-08-31 18:42:10 (GMT) |
commit | b57d46aa0db87b6349737e7b110ebe48ee14c143 (patch) | |
tree | c5048c0e96dabefea43300d3142f7669e07a64c2 | |
parent | 4c561a02291326c50f9b1f647eae891af9d1f3b2 (diff) | |
download | linux-b57d46aa0db87b6349737e7b110ebe48ee14c143.tar.xz |
iwlwifi: fix situation in which debug message is printed
3945 does not have update_chain_flags defined and because if this we always
see the debug message that does not apply to it. Add a check to be specific
about what is actually happening.
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-power.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-power.c b/drivers/net/wireless/iwlwifi/iwl-power.c index 081a7ea..4ec6a83 100644 --- a/drivers/net/wireless/iwlwifi/iwl-power.c +++ b/drivers/net/wireless/iwlwifi/iwl-power.c @@ -321,7 +321,7 @@ int iwl_power_update_mode(struct iwl_priv *priv, bool force) if (priv->cfg->ops->lib->update_chain_flags && update_chains) priv->cfg->ops->lib->update_chain_flags(priv); - else + else if (priv->cfg->ops->lib->update_chain_flags) IWL_DEBUG_POWER(priv, "Cannot update the power, chain noise " "calibration running: %d\n", |