The node debug lines in this file were just reporting the function was invoked,
authormtaylor <mtaylor@0192ed92-7a03-0410-a25b-9323aeb14dbd>
Wed, 21 Nov 2007 08:23:20 +0000 (08:23 +0000)
committermtaylor <mtaylor@0192ed92-7a03-0410-a25b-9323aeb14dbd>
Wed, 21 Nov 2007 08:23:20 +0000 (08:23 +0000)
and there didn't seem to be much point.

git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@2874 0192ed92-7a03-0410-a25b-9323aeb14dbd

ath_rate/sample/sample.c

index 569f8dcfdeb866ee96e6edae86df8845c104f9f6..fffad9a6a343cd07b973004472f34cc1782b84d1 100644 (file)
@@ -71,7 +71,6 @@
 #define        SAMPLE_DEBUG
 #ifdef SAMPLE_DEBUG
 enum {
-       ATH_DEBUG_NODE          = 0x00080000,   /* node management */
        ATH_DEBUG_RATE          = 0x00000010,   /* rate control */
        ATH_DEBUG_ANY           = 0xffffffff
 };
@@ -262,7 +261,6 @@ calc_usecs_unicast_packet(struct ath_softc *sc, int length,
 static void
 ath_rate_node_init(struct ath_softc *sc, struct ath_node *an)
 {
-       DPRINTF(sc, ATH_DEBUG_NODE, "%s:\n", __func__);
        /* NB: assumed to be zero'd by caller */
        ath_rate_ctl_reset(sc, &an->an_node);
 }
@@ -270,7 +268,6 @@ ath_rate_node_init(struct ath_softc *sc, struct ath_node *an)
 static void
 ath_rate_node_cleanup(struct ath_softc *sc, struct ath_node *an)
 {
-       DPRINTF(sc, ATH_DEBUG_NODE, "%s:\n", __func__);
 }
 
 #if 0