Make ieee80211_free_node() static
authorproski <proski@0192ed92-7a03-0410-a25b-9323aeb14dbd>
Wed, 1 Apr 2009 19:34:57 +0000 (19:34 +0000)
committerproski <proski@0192ed92-7a03-0410-a25b-9323aeb14dbd>
Wed, 1 Apr 2009 19:34:57 +0000 (19:34 +0000)
It should not be visible outside ieee80211_node.c

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

net80211/ieee80211_node.c
net80211/ieee80211_node.h

index 506a77c700d577794b141be903436da96df96f69..4991f04db19b230c842f262fb590f7982ce686ad 100644 (file)
@@ -1384,7 +1384,7 @@ ieee80211_find_txnode(struct ieee80211vap *vap, const u_int8_t *mac)
 EXPORT_SYMBOL(ieee80211_find_txnode);
 
 /* Context: hwIRQ, softIRQ and process context. */
-void
+static void
 ieee80211_free_node(struct ieee80211_node *ni)
 {
        struct ieee80211vap *vap = ni->ni_vap;
@@ -1402,7 +1402,6 @@ ieee80211_free_node(struct ieee80211_node *ni)
 
        vap->iv_ic->ic_node_free(ni);
 }
-EXPORT_SYMBOL(ieee80211_free_node);
 
 static void _reset_node(void *arg, struct ieee80211_node *ni)
 {
index bada5bca3176b1061dda9f623327ffb1efb6490a..03f82530c518a9e3acf1c9a7fcd7ff5cfc81f15e 100644 (file)
@@ -276,8 +276,6 @@ struct ieee80211_node *ieee80211_find_rxnode(struct ieee80211com *,
 struct ieee80211_node *ieee80211_find_txnode(struct ieee80211vap *,
        const u_int8_t *);
 
-void ieee80211_free_node(struct ieee80211_node *ni);
-
 /* Reference counting only needs to be locked out against the transitions,
  * 0->1 and 1->0 (i.e., when we do not own the reference we are getting).
  * This only happens when finding the a node reference from the node table,