ath10k: improve logging to include dev id
This makes it a lot easier to log and debug
messages if there's more than 1 ath10k device on a
system.
Signed-off-by: Michal Kazior <michal.kazior@tieto.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
diff --git a/drivers/net/wireless/ath/ath10k/spectral.c b/drivers/net/wireless/ath/ath10k/spectral.c
index a53afc2..3e1454b 100644
--- a/drivers/net/wireless/ath/ath10k/spectral.c
+++ b/drivers/net/wireless/ath/ath10k/spectral.c
@@ -237,7 +237,7 @@
WMI_SPECTRAL_TRIGGER_CMD_CLEAR,
WMI_SPECTRAL_ENABLE_CMD_DISABLE);
if (res < 0) {
- ath10k_warn("failed to enable spectral scan: %d\n", res);
+ ath10k_warn(ar, "failed to enable spectral scan: %d\n", res);
return res;
}
@@ -271,7 +271,7 @@
res = ath10k_wmi_vdev_spectral_conf(ar, &arg);
if (res < 0) {
- ath10k_warn("failed to configure spectral scan: %d\n", res);
+ ath10k_warn(ar, "failed to configure spectral scan: %d\n", res);
return res;
}
@@ -332,12 +332,12 @@
res = ath10k_spectral_scan_config(ar,
ar->spectral.mode);
if (res < 0) {
- ath10k_warn("failed to reconfigure spectral scan: %d\n",
+ ath10k_warn(ar, "failed to reconfigure spectral scan: %d\n",
res);
}
res = ath10k_spectral_scan_trigger(ar);
if (res < 0) {
- ath10k_warn("failed to trigger spectral scan: %d\n",
+ ath10k_warn(ar, "failed to trigger spectral scan: %d\n",
res);
}
} else {