mirror of https://gitee.com/openkylin/linux.git
ath10k: move enable_pll_clk call to ath10k_core_start()
There's no reason to have call for enable_pll_clk in ath10k_bmi_start(), move it to ath10k_core_start() instead. This way it's possible to call ath10k_bmi_start() from sdio.c during firmware dump creation. And also the function call is more visible when it's in core.c. No functional changes, compile tested only. Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/1597421745-4329-1-git-send-email-kvalo@codeaurora.org
This commit is contained in:
parent
3b9fb6791e
commit
ad0dc04264
|
@ -12,17 +12,9 @@
|
||||||
|
|
||||||
void ath10k_bmi_start(struct ath10k *ar)
|
void ath10k_bmi_start(struct ath10k *ar)
|
||||||
{
|
{
|
||||||
int ret;
|
|
||||||
|
|
||||||
ath10k_dbg(ar, ATH10K_DBG_BMI, "bmi start\n");
|
ath10k_dbg(ar, ATH10K_DBG_BMI, "bmi start\n");
|
||||||
|
|
||||||
ar->bmi.done_sent = false;
|
ar->bmi.done_sent = false;
|
||||||
|
|
||||||
/* Enable hardware clock to speed up firmware download */
|
|
||||||
if (ar->hw_params.hw_ops->enable_pll_clk) {
|
|
||||||
ret = ar->hw_params.hw_ops->enable_pll_clk(ar);
|
|
||||||
ath10k_dbg(ar, ATH10K_DBG_BMI, "bmi enable pll ret %d\n", ret);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int ath10k_bmi_done(struct ath10k *ar)
|
int ath10k_bmi_done(struct ath10k *ar)
|
||||||
|
|
|
@ -2615,6 +2615,13 @@ int ath10k_core_start(struct ath10k *ar, enum ath10k_firmware_mode mode,
|
||||||
ar->running_fw->fw_file.fw_features)) {
|
ar->running_fw->fw_file.fw_features)) {
|
||||||
ath10k_bmi_start(ar);
|
ath10k_bmi_start(ar);
|
||||||
|
|
||||||
|
/* Enable hardware clock to speed up firmware download */
|
||||||
|
if (ar->hw_params.hw_ops->enable_pll_clk) {
|
||||||
|
status = ar->hw_params.hw_ops->enable_pll_clk(ar);
|
||||||
|
ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot enable pll ret %d\n",
|
||||||
|
status);
|
||||||
|
}
|
||||||
|
|
||||||
if (ath10k_init_configure_target(ar)) {
|
if (ath10k_init_configure_target(ar)) {
|
||||||
status = -EINVAL;
|
status = -EINVAL;
|
||||||
goto err;
|
goto err;
|
||||||
|
|
Loading…
Reference in New Issue