mirror of https://gitee.com/openkylin/linux.git
iwlwifi: mvm: remove redundant iwl_power_get_params()
The function just wraps an existing one, remove it. Signed-off-by: Alexander Bondar <alexander.bondar@intel.com> Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
614ee33632
commit
4d1c4b1a63
|
@ -481,8 +481,6 @@ void iwl_mvm_cancel_scan(struct iwl_mvm *mvm);
|
||||||
int iwl_mvm_dbgfs_register(struct iwl_mvm *mvm, struct dentry *dbgfs_dir);
|
int iwl_mvm_dbgfs_register(struct iwl_mvm *mvm, struct dentry *dbgfs_dir);
|
||||||
void iwl_mvm_vif_dbgfs_register(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
|
void iwl_mvm_vif_dbgfs_register(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
|
||||||
void iwl_mvm_vif_dbgfs_clean(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
|
void iwl_mvm_vif_dbgfs_clean(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
|
||||||
void iwl_power_get_params(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
|
|
||||||
struct iwl_powertable_cmd *cmd);
|
|
||||||
#else
|
#else
|
||||||
static inline int iwl_mvm_dbgfs_register(struct iwl_mvm *mvm,
|
static inline int iwl_mvm_dbgfs_register(struct iwl_mvm *mvm,
|
||||||
struct dentry *dbgfs_dir)
|
struct dentry *dbgfs_dir)
|
||||||
|
@ -506,6 +504,8 @@ int iwl_mvm_send_lq_cmd(struct iwl_mvm *mvm, struct iwl_lq_cmd *lq,
|
||||||
/* power managment */
|
/* power managment */
|
||||||
int iwl_mvm_power_update_mode(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
|
int iwl_mvm_power_update_mode(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
|
||||||
int iwl_mvm_power_disable(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
|
int iwl_mvm_power_disable(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
|
||||||
|
void iwl_mvm_power_build_cmd(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
|
||||||
|
struct iwl_powertable_cmd *cmd);
|
||||||
|
|
||||||
int iwl_mvm_leds_init(struct iwl_mvm *mvm);
|
int iwl_mvm_leds_init(struct iwl_mvm *mvm);
|
||||||
void iwl_mvm_leds_exit(struct iwl_mvm *mvm);
|
void iwl_mvm_leds_exit(struct iwl_mvm *mvm);
|
||||||
|
|
|
@ -94,9 +94,8 @@ static void iwl_mvm_power_log(struct iwl_mvm *mvm,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void iwl_mvm_power_build_cmd(struct iwl_mvm *mvm,
|
void iwl_mvm_power_build_cmd(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
|
||||||
struct ieee80211_vif *vif,
|
struct iwl_powertable_cmd *cmd)
|
||||||
struct iwl_powertable_cmd *cmd)
|
|
||||||
{
|
{
|
||||||
struct ieee80211_hw *hw = mvm->hw;
|
struct ieee80211_hw *hw = mvm->hw;
|
||||||
struct ieee80211_chanctx_conf *chanctx_conf;
|
struct ieee80211_chanctx_conf *chanctx_conf;
|
||||||
|
@ -187,11 +186,3 @@ int iwl_mvm_power_disable(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
|
||||||
return iwl_mvm_send_cmd_pdu(mvm, POWER_TABLE_CMD, CMD_ASYNC,
|
return iwl_mvm_send_cmd_pdu(mvm, POWER_TABLE_CMD, CMD_ASYNC,
|
||||||
sizeof(cmd), &cmd);
|
sizeof(cmd), &cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_IWLWIFI_DEBUGFS
|
|
||||||
void iwl_power_get_params(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
|
|
||||||
struct iwl_powertable_cmd *cmd)
|
|
||||||
{
|
|
||||||
iwl_mvm_power_build_cmd(mvm, vif, cmd);
|
|
||||||
}
|
|
||||||
#endif /* CONFIG_IWLWIFI_DEBUGFS */
|
|
||||||
|
|
Loading…
Reference in New Issue