aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ath/if_ath_debug.h
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2016-05-31 04:09:17 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2016-05-31 04:09:17 +0000
commitee1623827e580adb0387320157ee6032a53d0db1 (patch)
treed74806ecff1082ab9a5fc99315a3b60402956436 /sys/dev/ath/if_ath_debug.h
parent2770ce607cfca0a9b02ff73728ee4a17bd304326 (diff)
Notes
Diffstat (limited to 'sys/dev/ath/if_ath_debug.h')
-rw-r--r--sys/dev/ath/if_ath_debug.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/ath/if_ath_debug.h b/sys/dev/ath/if_ath_debug.h
index 5d471393a6d7..8a04790f8204 100644
--- a/sys/dev/ath/if_ath_debug.h
+++ b/sys/dev/ath/if_ath_debug.h
@@ -69,6 +69,7 @@ enum {
ATH_DEBUG_NODE_PWRSAVE = 0x800000000ULL, /* node powersave */
ATH_DEBUG_DIVERSITY = 0x1000000000ULL, /* Diversity logic */
ATH_DEBUG_PWRSAVE = 0x2000000000ULL,
+ ATH_DEBUG_BTCOEX = 0x4000000000ULL, /* BT Coex */
ATH_DEBUG_ANY = 0xffffffffffffffffULL
};
@@ -92,9 +93,9 @@ enum {
extern uint64_t ath_debug;
#define IFF_DUMPPKTS(sc, m) (sc->sc_debug & (m))
-#define DPRINTF(sc, m, fmt, ...) do { \
+#define DPRINTF(sc, m, ...) do { \
if (sc->sc_debug & (m)) \
- device_printf(sc->sc_dev, fmt, __VA_ARGS__); \
+ device_printf(sc->sc_dev, __VA_ARGS__); \
} while (0)
#define KEYPRINTF(sc, ix, hk, mac) do { \
if (sc->sc_debug & ATH_DEBUG_KEYCACHE) \