]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
rtlwifi: Change debug level for deletion of an entry in CAM
authorLarry Finger <Larry.Finger@lwfinger.net>
Thu, 21 Jun 2012 18:08:04 +0000 (13:08 -0500)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 22 Jun 2012 18:44:06 +0000 (14:44 -0400)
When running in AP mode, the driver reports all deletions from CAM in
a cryptic manner that makes users think it is an error. change so that
the condition is only reported at higher-levels of debugging.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/rtlwifi/cam.c

index 3d8cc4a0c86dfba898a23c2a7ef4625d3a3885b7..6a2d72beb00d2d552d07e8524d79c9ee837e81e0 100644 (file)
@@ -128,7 +128,7 @@ u8 rtl_cam_add_one_entry(struct ieee80211_hw *hw, u8 *mac_addr,
        u32 us_config;
        struct rtl_priv *rtlpriv = rtl_priv(hw);
 
-       RT_TRACE(rtlpriv, COMP_SEC, DBG_DMESG,
+       RT_TRACE(rtlpriv, COMP_SEC, DBG_LOUD,
                 "EntryNo:%x, ulKeyId=%x, ulEncAlg=%x, ulUseDK=%x MacAddr %pM\n",
                 ul_entry_idx, ul_key_id, ul_enc_alg,
                 ul_default_key, mac_addr);
@@ -342,7 +342,8 @@ void rtl_cam_del_entry(struct ieee80211_hw *hw, u8 *sta_addr)
                        /* Remove from HW Security CAM */
                        memset(rtlpriv->sec.hwsec_cam_sta_addr[i], 0, ETH_ALEN);
                        rtlpriv->sec.hwsec_cam_bitmap &= ~(BIT(0) << i);
-                       pr_info("&&&&&&&&&del entry %d\n", i);
+                       RT_TRACE(rtlpriv, COMP_SEC, DBG_LOUD,
+                                "del CAM entry %d\n", i);
                }
        }
        return;