Commit c508671d authored by Kalle Valo's avatar Kalle Valo

ath10k: print chip id during boot

This makes it easier to debug what kind of board is used.
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 78a9cb4c
...@@ -855,9 +855,12 @@ int ath10k_core_start(struct ath10k *ar) ...@@ -855,9 +855,12 @@ int ath10k_core_start(struct ath10k *ar)
INIT_LIST_HEAD(&ar->arvifs); INIT_LIST_HEAD(&ar->arvifs);
if (!test_bit(ATH10K_FLAG_FIRST_BOOT_DONE, &ar->dev_flags)) if (!test_bit(ATH10K_FLAG_FIRST_BOOT_DONE, &ar->dev_flags))
ath10k_info("%s (0x%x) fw %s api %d htt %d.%d\n", ath10k_info("%s (0x%08x, 0x%08x) fw %s api %d htt %d.%d\n",
ar->hw_params.name, ar->target_version, ar->hw_params.name,
ar->hw->wiphy->fw_version, ar->fw_api, ar->target_version,
ar->chip_id,
ar->hw->wiphy->fw_version,
ar->fw_api,
ar->htt.target_version_major, ar->htt.target_version_major,
ar->htt.target_version_minor); ar->htt.target_version_minor);
......
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