]> git.karo-electronics.de Git - linux-beck.git/commitdiff
rtl8xxxu: Do not unconditionally print debug info in rtl8723bu_handle_c2h()
authorJes Sorensen <Jes.Sorensen@redhat.com>
Mon, 29 Feb 2016 22:05:28 +0000 (17:05 -0500)
committerKalle Valo <kvalo@codeaurora.org>
Thu, 10 Mar 2016 13:29:15 +0000 (15:29 +0200)
Reduce the log level in rtl8723bu_handle_c2h()

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.c

index 19bc5d7556bcb43f54ce7dbf92c54c55cc880a0a..49fb5bd2950dafe9c0dc710f79da041b229ded8b 100644 (file)
@@ -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;
        }
 }