svn commit: r297198 - head/sys/net80211

Adrian Chadd adrian at FreeBSD.org
Tue Mar 22 22:07:15 UTC 2016


Author: adrian
Date: Tue Mar 22 22:07:14 2016
New Revision: 297198
URL: https://svnweb.freebsd.org/changeset/base/297198

Log:
  [net80211] add missing static declarations.
  
  Submitted by:	Sascha Wildner <saw at online.de>
  Obtained from:	dragonflybsd (https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/822aeeabc8c4c074deea46383f36e6d1cdcd19f5)

Modified:
  head/sys/net80211/ieee80211_hwmp.c

Modified: head/sys/net80211/ieee80211_hwmp.c
==============================================================================
--- head/sys/net80211/ieee80211_hwmp.c	Tue Mar 22 21:02:04 2016	(r297197)
+++ head/sys/net80211/ieee80211_hwmp.c	Tue Mar 22 22:07:14 2016	(r297198)
@@ -260,7 +260,7 @@ ieee80211_hwmp_init(void)
 }
 SYSINIT(wlan_hwmp, SI_SUB_DRIVERS, SI_ORDER_SECOND, ieee80211_hwmp_init, NULL);
 
-void
+static void
 hwmp_vattach(struct ieee80211vap *vap)
 {
 	struct ieee80211_hwmp_state *hs;
@@ -279,7 +279,7 @@ hwmp_vattach(struct ieee80211vap *vap)
 	vap->iv_hwmp = hs;
 }
 
-void
+static void
 hwmp_vdetach(struct ieee80211vap *vap)
 {
 	struct ieee80211_hwmp_state *hs = vap->iv_hwmp;
@@ -289,7 +289,7 @@ hwmp_vdetach(struct ieee80211vap *vap)
 	vap->iv_hwmp = NULL;
 } 
 
-int
+static int
 hwmp_newstate(struct ieee80211vap *vap, enum ieee80211_state ostate, int arg)
 {
 	enum ieee80211_state nstate = vap->iv_state;


More information about the svn-src-all mailing list