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

Commit 34b28b6e authored by Michal Kazior's avatar Michal Kazior Committed by Kalle Valo
Browse files

ath10k: print wmi version info



HTT version is already printed so print WMI
version as well for consistency.

Signed-off-by: default avatarMichal Kazior <michal.kazior@tieto.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent a6aa5da3
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -126,14 +126,18 @@ EXPORT_SYMBOL(ath10k_info);

void ath10k_print_driver_info(struct ath10k *ar)
{
	ath10k_info(ar, "%s (0x%08x, 0x%08x) fw %s api %d htt %d.%d\n",
	ath10k_info(ar, "%s (0x%08x, 0x%08x) fw %s api %d htt %d.%d wmi %d.%d.%d.%d\n",
		    ar->hw_params.name,
		    ar->target_version,
		    ar->chip_id,
		    ar->hw->wiphy->fw_version,
		    ar->fw_api,
		    ar->htt.target_version_major,
		    ar->htt.target_version_minor);
		    ar->htt.target_version_minor,
		    ar->fw_version_major,
		    ar->fw_version_minor,
		    ar->fw_version_release,
		    ar->fw_version_build);
	ath10k_info(ar, "debug %d debugfs %d tracing %d dfs %d testmode %d\n",
		    config_enabled(CONFIG_ATH10K_DEBUG),
		    config_enabled(CONFIG_ATH10K_DEBUGFS),