diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-03-28 08:35:16 -0400 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-04-08 02:39:19 -0400 |
commit | 7a8a396be406aa51124e8baae827406ae3bc59ed (patch) | |
tree | b1ae8d29726520ca295547ecd4d13c524dbc48e4 | |
parent | 52e346d1e70c0cced4ef1a3f4c9d11f3b6949e53 (diff) |
ath10k: cleanup debug messages in ath10k_wmi_event_host_swba()
They were just too superfluous and made it harder to read logs. Change them to
follow the normal style used in ath10k.
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
-rw-r--r-- | drivers/net/wireless/ath/ath10k/wmi.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c index d4b48ef0ec2e..fe4d5f1c672f 100644 --- a/drivers/net/wireless/ath/ath10k/wmi.c +++ b/drivers/net/wireless/ath/ath10k/wmi.c | |||
@@ -1362,13 +1362,10 @@ static void ath10k_wmi_event_host_swba(struct ath10k *ar, struct sk_buff *skb) | |||
1362 | struct sk_buff *bcn; | 1362 | struct sk_buff *bcn; |
1363 | int ret, vdev_id = 0; | 1363 | int ret, vdev_id = 0; |
1364 | 1364 | ||
1365 | ath10k_dbg(ATH10K_DBG_MGMT, "WMI_HOST_SWBA_EVENTID\n"); | ||
1366 | |||
1367 | ev = (struct wmi_host_swba_event *)skb->data; | 1365 | ev = (struct wmi_host_swba_event *)skb->data; |
1368 | map = __le32_to_cpu(ev->vdev_map); | 1366 | map = __le32_to_cpu(ev->vdev_map); |
1369 | 1367 | ||
1370 | ath10k_dbg(ATH10K_DBG_MGMT, "host swba:\n" | 1368 | ath10k_dbg(ATH10K_DBG_MGMT, "mgmt swba vdev_map 0x%x\n", |
1371 | "-vdev map 0x%x\n", | ||
1372 | ev->vdev_map); | 1369 | ev->vdev_map); |
1373 | 1370 | ||
1374 | for (; map; map >>= 1, vdev_id++) { | 1371 | for (; map; map >>= 1, vdev_id++) { |
@@ -1385,12 +1382,7 @@ static void ath10k_wmi_event_host_swba(struct ath10k *ar, struct sk_buff *skb) | |||
1385 | bcn_info = &ev->bcn_info[i]; | 1382 | bcn_info = &ev->bcn_info[i]; |
1386 | 1383 | ||
1387 | ath10k_dbg(ATH10K_DBG_MGMT, | 1384 | ath10k_dbg(ATH10K_DBG_MGMT, |
1388 | "-bcn_info[%d]:\n" | 1385 | "mgmt event bcn_info %d tim_len %d mcast %d changed %d num_ps_pending %d bitmap 0x%08x%08x%08x%08x\n", |
1389 | "--tim_len %d\n" | ||
1390 | "--tim_mcast %d\n" | ||
1391 | "--tim_changed %d\n" | ||
1392 | "--tim_num_ps_pending %d\n" | ||
1393 | "--tim_bitmap 0x%08x%08x%08x%08x\n", | ||
1394 | i, | 1386 | i, |
1395 | __le32_to_cpu(bcn_info->tim_info.tim_len), | 1387 | __le32_to_cpu(bcn_info->tim_info.tim_len), |
1396 | __le32_to_cpu(bcn_info->tim_info.tim_mcast), | 1388 | __le32_to_cpu(bcn_info->tim_info.tim_mcast), |