Commit 650b91fb authored by Kalle Valo's avatar Kalle Valo

ath10k: show hardware and firmware info prints only once

This makes ath10k a lot less spammy by default.
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent c8c39afe
...@@ -832,10 +832,14 @@ int ath10k_core_start(struct ath10k *ar) ...@@ -832,10 +832,14 @@ int ath10k_core_start(struct ath10k *ar)
ar->free_vdev_map = (1 << TARGET_NUM_VDEVS) - 1; ar->free_vdev_map = (1 << TARGET_NUM_VDEVS) - 1;
INIT_LIST_HEAD(&ar->arvifs); INIT_LIST_HEAD(&ar->arvifs);
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%x) fw %s api %d htt %d.%d\n",
ar->hw_params.name, ar->target_version, ar->hw_params.name, ar->target_version,
ar->hw->wiphy->fw_version, ar->fw_api, ar->hw->wiphy->fw_version, ar->fw_api,
ar->htt.target_version_major, ar->htt.target_version_minor); ar->htt.target_version_major,
ar->htt.target_version_minor);
__set_bit(ATH10K_FLAG_FIRST_BOOT_DONE, &ar->dev_flags);
return 0; return 0;
......
...@@ -313,6 +313,7 @@ enum ath10k_fw_features { ...@@ -313,6 +313,7 @@ enum ath10k_fw_features {
enum ath10k_dev_flags { enum ath10k_dev_flags {
/* Indicates that ath10k device is during CAC phase of DFS */ /* Indicates that ath10k device is during CAC phase of DFS */
ATH10K_CAC_RUNNING, ATH10K_CAC_RUNNING,
ATH10K_FLAG_FIRST_BOOT_DONE,
}; };
struct ath10k { struct ath10k {
......
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <linux/bitops.h>
#include "core.h" #include "core.h"
#include "debug.h" #include "debug.h"
...@@ -1925,6 +1926,7 @@ static int ath10k_pci_hif_power_up(struct ath10k *ar) ...@@ -1925,6 +1926,7 @@ static int ath10k_pci_hif_power_up(struct ath10k *ar)
else else
irq_mode = "legacy"; irq_mode = "legacy";
if (!test_bit(ATH10K_FLAG_FIRST_BOOT_DONE, &ar->dev_flags))
ath10k_info("pci irq %s\n", irq_mode); ath10k_info("pci irq %s\n", irq_mode);
return 0; return 0;
......
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