Commit b52b7688 authored by Kalle Valo's avatar Kalle Valo

ath10k: rename ATH10K_DBG_CORE to BOOT

core.c mostly deals with driver and firmware starting related
actions. And we can use the boot level also in other components,
like PCI and HTT.
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent f0bbea99
...@@ -53,7 +53,7 @@ static const struct ath10k_hw_params ath10k_hw_params_list[] = { ...@@ -53,7 +53,7 @@ static const struct ath10k_hw_params ath10k_hw_params_list[] = {
static void ath10k_send_suspend_complete(struct ath10k *ar) static void ath10k_send_suspend_complete(struct ath10k *ar)
{ {
ath10k_dbg(ATH10K_DBG_CORE, "%s\n", __func__); ath10k_dbg(ATH10K_DBG_BOOT, "%s\n", __func__);
ar->is_target_paused = true; ar->is_target_paused = true;
wake_up(&ar->event_queue); wake_up(&ar->event_queue);
...@@ -101,7 +101,7 @@ static int ath10k_init_connect_htc(struct ath10k *ar) ...@@ -101,7 +101,7 @@ static int ath10k_init_connect_htc(struct ath10k *ar)
goto timeout; goto timeout;
} }
ath10k_dbg(ATH10K_DBG_CORE, "core wmi ready\n"); ath10k_dbg(ATH10K_DBG_BOOT, "core wmi ready\n");
return 0; return 0;
timeout: timeout:
...@@ -203,7 +203,7 @@ static int ath10k_push_board_ext_data(struct ath10k *ar, ...@@ -203,7 +203,7 @@ static int ath10k_push_board_ext_data(struct ath10k *ar,
return ret; return ret;
} }
ath10k_dbg(ATH10K_DBG_CORE, ath10k_dbg(ATH10K_DBG_BOOT,
"ath10k: Board extended Data download addr: 0x%x\n", "ath10k: Board extended Data download addr: 0x%x\n",
board_ext_data_addr); board_ext_data_addr);
......
...@@ -27,7 +27,7 @@ enum ath10k_debug_mask { ...@@ -27,7 +27,7 @@ enum ath10k_debug_mask {
ATH10K_DBG_HTC = 0x00000004, ATH10K_DBG_HTC = 0x00000004,
ATH10K_DBG_HTT = 0x00000008, ATH10K_DBG_HTT = 0x00000008,
ATH10K_DBG_MAC = 0x00000010, ATH10K_DBG_MAC = 0x00000010,
ATH10K_DBG_CORE = 0x00000020, ATH10K_DBG_BOOT = 0x00000020,
ATH10K_DBG_PCI_DUMP = 0x00000040, ATH10K_DBG_PCI_DUMP = 0x00000040,
ATH10K_DBG_HTT_DUMP = 0x00000080, ATH10K_DBG_HTT_DUMP = 0x00000080,
ATH10K_DBG_MGMT = 0x00000100, ATH10K_DBG_MGMT = 0x00000100,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment