Commit 5e00d503 authored by Jes Sorensen's avatar Jes Sorensen Committed by Kalle Valo

rtl8xxxu: Do not unconditionally print debug info in rtl8723bu_handle_c2h()

Reduce the log level in rtl8723bu_handle_c2h()
Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 179e1742
......@@ -7296,29 +7296,29 @@ static void rtl8723bu_handle_c2h(struct rtl8xxxu_priv *priv,
len = skb->len - 2;
dev_info(dev, "C2H ID %02x seq %02x, len %02x source %02x\n",
c2h->id, c2h->seq, len, c2h->bt_info.response_source);
dev_dbg(dev, "C2H ID %02x seq %02x, len %02x source %02x\n",
c2h->id, c2h->seq, len, c2h->bt_info.response_source);
switch(c2h->id) {
case C2H_8723B_BT_INFO:
if (c2h->bt_info.response_source >
BT_INFO_SRC_8723B_BT_ACTIVE_SEND)
dev_info(dev, "C2H_BT_INFO WiFi only firmware\n");
dev_dbg(dev, "C2H_BT_INFO WiFi only firmware\n");
else
dev_info(dev, "C2H_BT_INFO BT/WiFi coexist firmware\n");
dev_dbg(dev, "C2H_BT_INFO BT/WiFi coexist firmware\n");
if (c2h->bt_info.bt_has_reset)
dev_info(dev, "BT has been reset\n");
dev_dbg(dev, "BT has been reset\n");
if (c2h->bt_info.tx_rx_mask)
dev_info(dev, "BT TRx mask\n");
dev_dbg(dev, "BT TRx mask\n");
break;
case C2H_8723B_BT_MP_INFO:
dev_info(dev, "C2H_MP_INFO ext ID %02x, status %02x\n",
c2h->bt_mp_info.ext_id, c2h->bt_mp_info.status);
dev_dbg(dev, "C2H_MP_INFO ext ID %02x, status %02x\n",
c2h->bt_mp_info.ext_id, c2h->bt_mp_info.status);
break;
default:
pr_info("%s: Unhandled C2H event %02x\n", __func__, c2h->id);
dev_info(dev, "Unhandled C2H event %02x\n", c2h->id);
break;
}
}
......
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