Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b52b7688 authored by Kalle Valo's avatar Kalle Valo
Browse files

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
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ static const struct ath10k_hw_params ath10k_hw_params_list[] = {

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;
	wake_up(&ar->event_queue);
@@ -101,7 +101,7 @@ static int ath10k_init_connect_htc(struct ath10k *ar)
		goto timeout;
	}

	ath10k_dbg(ATH10K_DBG_CORE, "core wmi ready\n");
	ath10k_dbg(ATH10K_DBG_BOOT, "core wmi ready\n");
	return 0;

timeout:
@@ -203,7 +203,7 @@ static int ath10k_push_board_ext_data(struct ath10k *ar,
		return ret;
	}

	ath10k_dbg(ATH10K_DBG_CORE,
	ath10k_dbg(ATH10K_DBG_BOOT,
		   "ath10k: Board extended Data download addr: 0x%x\n",
		   board_ext_data_addr);

+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ enum ath10k_debug_mask {
	ATH10K_DBG_HTC		= 0x00000004,
	ATH10K_DBG_HTT		= 0x00000008,
	ATH10K_DBG_MAC		= 0x00000010,
	ATH10K_DBG_CORE		= 0x00000020,
	ATH10K_DBG_BOOT		= 0x00000020,
	ATH10K_DBG_PCI_DUMP	= 0x00000040,
	ATH10K_DBG_HTT_DUMP	= 0x00000080,
	ATH10K_DBG_MGMT		= 0x00000100,