brcm80211: Convert log message levels to debug levels
authorSeth Forshee <seth.forshee@canonical.com>
Thu, 15 Nov 2012 14:08:00 +0000 (08:08 -0600)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 20 Nov 2012 19:05:37 +0000 (14:05 -0500)
In preparation for enhancements to debug and trace support, convert the
message levels to debug levels which will be used for enabling
categories of debug messages. The two message levels are little-used
anyway and are combined into the BRCM_DL_INFO debug level.

Acked-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
Tested-by: Daniel Wagner <wagi@monom.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/brcm80211/brcmsmac/ampdu.c
drivers/net/wireless/brcm80211/brcmsmac/main.c
drivers/net/wireless/brcm80211/brcmsmac/types.h
drivers/net/wireless/brcm80211/include/defs.h

index c62fd3d..93d4ecd 100644 (file)
@@ -926,7 +926,7 @@ brcms_c_ampdu_dotxstatus_complete(struct ampdu_info *ampdu, struct scb *scb,
                        wiphy_err(wiphy, "%s: ampdu tx phy error (0x%x)\n",
                                  __func__, txs->phyerr);
 
-                       if (brcm_msg_level & LOG_ERROR_VAL) {
+                       if (brcm_msg_level & BRCM_DL_INFO) {
                                brcmu_prpkt("txpkt (AMPDU)", p);
                                brcms_c_print_txdesc((struct d11txh *) p->data);
                        }
index 25c5410..9c4531d 100644 (file)
@@ -281,7 +281,7 @@ struct edcf_acparam {
 /* debug/trace */
 uint brcm_msg_level =
 #if defined(DEBUG)
-       LOG_ERROR_VAL;
+       BRCM_DL_INFO;
 #else
        0;
 #endif                         /* DEBUG */
@@ -902,7 +902,7 @@ brcms_c_dotxstatus(struct brcms_c_info *wlc, struct tx_status *txs)
        mcl = le16_to_cpu(txh->MacTxControlLow);
 
        if (txs->phyerr) {
-               if (brcm_msg_level & LOG_ERROR_VAL) {
+               if (brcm_msg_level & BRCM_DL_INFO) {
                        wiphy_err(wlc->wiphy, "phyerr 0x%x, rate 0x%x\n",
                                  txs->phyerr, txh->MainRates);
                        brcms_c_print_txdesc(txh);
index e3abc0e..ae1f3ad 100644 (file)
 
 #define BCMMSG(dev, fmt, args...)              \
 do {                                           \
-       if (brcm_msg_level & LOG_TRACE_VAL)     \
+       if (brcm_msg_level & BRCM_DL_INFO)      \
                wiphy_err(dev, "%s: " fmt, __func__, ##args);   \
 } while (0)
 
index f0d8c04..223eb2b 100644 (file)
@@ -78,9 +78,8 @@
 #define PM_OFF 0
 #define PM_MAX 1
 
-/* Message levels */
-#define LOG_ERROR_VAL          0x00000001
-#define LOG_TRACE_VAL          0x00000002
+/* Debug levels */
+#define BRCM_DL_INFO           0x00000001
 
 #define PM_OFF 0
 #define PM_MAX 1