PERFORCE change 68502 for review

Sam Leffler sam at FreeBSD.org
Fri Jan 7 15:56:31 PST 2005


http://perforce.freebsd.org/chv.cgi?CH=68502

Change 68502 by sam at sam_ebb on 2005/01/07 23:55:34

	add parens so we can specify a|b for debug masks

Affected files ...

.. //depot/projects/wifi/sys/dev/ath/if_ath.c#56 edit

Differences ...

==== //depot/projects/wifi/sys/dev/ath/if_ath.c#56 (text+ko) ====

@@ -226,10 +226,10 @@
 	ATH_DEBUG_ANY		= 0xffffffff
 };
 #define	IFF_DUMPPKTS(sc, m) \
-	((sc->sc_debug & m) || \
+	((sc->sc_debug & (m)) || \
 	    (sc->sc_if.if_flags & (IFF_DEBUG|IFF_LINK2)) == (IFF_DEBUG|IFF_LINK2))
 #define	DPRINTF(sc, m, fmt, ...) do {				\
-	if (sc->sc_debug & m)					\
+	if (sc->sc_debug & (m))					\
 		printf(fmt, __VA_ARGS__);			\
 } while (0)
 #define	KEYPRINTF(sc, ix, hk, mac) do {				\


More information about the p4-projects mailing list