summaryrefslogtreecommitdiffstats
path: root/sys/net80211
diff options
context:
space:
mode:
authoradrian <adrian@FreeBSD.org>2016-03-22 22:07:14 +0000
committeradrian <adrian@FreeBSD.org>2016-03-22 22:07:14 +0000
commit401325262734585b8e1ddabb2ab9b8c9a7c38424 (patch)
tree1138fc23120f3a9786b103ad883d62179ffe9f46 /sys/net80211
parent33cfc29b6ceb9ed76b35228702c4d6a6ae8937e0 (diff)
downloadFreeBSD-src-401325262734585b8e1ddabb2ab9b8c9a7c38424.zip
FreeBSD-src-401325262734585b8e1ddabb2ab9b8c9a7c38424.tar.gz
[net80211] add missing static declarations.
Submitted by: Sascha Wildner <saw@online.de> Obtained from: dragonflybsd (https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/822aeeabc8c4c074deea46383f36e6d1cdcd19f5)
Diffstat (limited to 'sys/net80211')
-rw-r--r--sys/net80211/ieee80211_hwmp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net80211/ieee80211_hwmp.c b/sys/net80211/ieee80211_hwmp.c
index 6bbc32c..0c920d8 100644
--- a/sys/net80211/ieee80211_hwmp.c
+++ b/sys/net80211/ieee80211_hwmp.c
@@ -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;
OpenPOWER on IntegriCloud