mirror of
https://git.freebsd.org/src.git
synced 2026-01-12 06:54:03 +00:00
net80211: Use proper prototype for SYSINIT functions
MFC after: 1 week
This commit is contained in:
parent
6f8259eae6
commit
7449e59110
6 changed files with 6 additions and 6 deletions
|
|
@ -167,7 +167,7 @@ static ieee80211_send_action_func ht_send_action_ba_delba;
|
|||
static ieee80211_send_action_func ht_send_action_ht_txchwidth;
|
||||
|
||||
static void
|
||||
ieee80211_ht_init(void)
|
||||
ieee80211_ht_init(void *dummy __unused)
|
||||
{
|
||||
/*
|
||||
* Setup HT parameters that depends on the clock frequency.
|
||||
|
|
|
|||
|
|
@ -212,7 +212,7 @@ SYSCTL_PROC(_net_wlan_hwmp, OID_AUTO, inact,
|
|||
"mesh route inactivity timeout (ms)");
|
||||
|
||||
static void
|
||||
ieee80211_hwmp_init(void)
|
||||
ieee80211_hwmp_init(void *dummy __unused)
|
||||
{
|
||||
/* Default values as per amendment */
|
||||
ieee80211_hwmp_pathtimeout = msecs_to_ticks(5*1000);
|
||||
|
|
|
|||
|
|
@ -548,7 +548,7 @@ mesh_gatemode_cb(void *arg)
|
|||
}
|
||||
|
||||
static void
|
||||
ieee80211_mesh_init(void)
|
||||
ieee80211_mesh_init(void *dummy __unused)
|
||||
{
|
||||
|
||||
memset(mesh_proto_paths, 0, sizeof(mesh_proto_paths));
|
||||
|
|
|
|||
|
|
@ -348,7 +348,7 @@ ieee80211_setup_ratetable(struct ieee80211_rate_table *rt)
|
|||
|
||||
/* Setup all rate tables */
|
||||
static void
|
||||
ieee80211_phy_init(void)
|
||||
ieee80211_phy_init(void *dummy __unused)
|
||||
{
|
||||
static struct ieee80211_rate_table * const ratetables[] = {
|
||||
&ieee80211_half_table,
|
||||
|
|
|
|||
|
|
@ -459,7 +459,7 @@ static const struct ieee80211_authenticator auth_internal = {
|
|||
* Setup internal authenticators once; they are never unregistered.
|
||||
*/
|
||||
static void
|
||||
ieee80211_auth_setup(void)
|
||||
ieee80211_auth_setup(void *dummy __unused)
|
||||
{
|
||||
ieee80211_authenticator_register(IEEE80211_AUTH_OPEN, &auth_internal);
|
||||
ieee80211_authenticator_register(IEEE80211_AUTH_SHARED, &auth_internal);
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ vht_send_action_placeholder(struct ieee80211_node *ni,
|
|||
}
|
||||
|
||||
static void
|
||||
ieee80211_vht_init(void)
|
||||
ieee80211_vht_init(void *dummy __unused)
|
||||
{
|
||||
|
||||
ieee80211_recv_action_register(IEEE80211_ACTION_CAT_VHT,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue