aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath10k/debug.c
diff options
context:
space:
mode:
authorMichal Kazior <michal.kazior@tieto.com>2015-06-15 07:46:41 -0400
committerKalle Valo <kvalo@qca.qualcomm.com>2015-06-16 06:06:47 -0400
commit67c81f5a06ed1474c4f16ad93f4502c760999515 (patch)
tree04714e20ad148a21bfab1e9c9e40a47afd737b23 /drivers/net/wireless/ath/ath10k/debug.c
parentb27bc5a40f915671eda3ac255734a64153fc91f5 (diff)
ath10k: print htt op_version upon driver boot
HTT version itself isn't sufficient to know what HTT version given firmware blob uses. Hence print the recently introduced HTT op version code. While at it make the info string a bit more consistent and clear. Signed-off-by: Michal Kazior <michal.kazior@tieto.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/debug.c')
-rw-r--r--drivers/net/wireless/ath/ath10k/debug.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/debug.c b/drivers/net/wireless/ath/ath10k/debug.c
index 8a4edfd36e47..edf6047997a7 100644
--- a/drivers/net/wireless/ath/ath10k/debug.c
+++ b/drivers/net/wireless/ath/ath10k/debug.c
@@ -128,7 +128,7 @@ void ath10k_print_driver_info(struct ath10k *ar)
128 128
129 ath10k_core_get_fw_features_str(ar, fw_features, sizeof(fw_features)); 129 ath10k_core_get_fw_features_str(ar, fw_features, sizeof(fw_features));
130 130
131 ath10k_info(ar, "%s (0x%08x, 0x%08x%s%s%s) fw %s api %d htt %d.%d wmi %d cal %s max_sta %d features %s\n", 131 ath10k_info(ar, "%s (0x%08x, 0x%08x%s%s%s) fw %s api %d htt-ver %d.%d wmi-op %d htt-op %d cal %s max-sta %d features %s\n",
132 ar->hw_params.name, 132 ar->hw_params.name,
133 ar->target_version, 133 ar->target_version,
134 ar->chip_id, 134 ar->chip_id,
@@ -141,6 +141,7 @@ void ath10k_print_driver_info(struct ath10k *ar)
141 ar->htt.target_version_major, 141 ar->htt.target_version_major,
142 ar->htt.target_version_minor, 142 ar->htt.target_version_minor,
143 ar->wmi.op_version, 143 ar->wmi.op_version,
144 ar->htt.op_version,
144 ath10k_cal_mode_str(ar->cal_mode), 145 ath10k_cal_mode_str(ar->cal_mode),
145 ar->max_num_stations, 146 ar->max_num_stations,
146 fw_features); 147 fw_features);