diff options
-rw-r--r-- | net/batman-adv/bat_iv_ogm.c | 4 | ||||
-rw-r--r-- | net/batman-adv/hard-interface.c | 2 | ||||
-rw-r--r-- | net/batman-adv/main.c | 2 | ||||
-rw-r--r-- | net/batman-adv/types.h | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/net/batman-adv/bat_iv_ogm.c b/net/batman-adv/bat_iv_ogm.c index 271467033a1c..c0bdb90cc024 100644 --- a/net/batman-adv/bat_iv_ogm.c +++ b/net/batman-adv/bat_iv_ogm.c | |||
@@ -67,7 +67,7 @@ static void bat_iv_ogm_iface_disable(struct hard_iface *hard_iface) | |||
67 | hard_iface->packet_buff = NULL; | 67 | hard_iface->packet_buff = NULL; |
68 | } | 68 | } |
69 | 69 | ||
70 | static void bat_iv_ogm_init_primary(struct hard_iface *hard_iface) | 70 | static void bat_iv_ogm_primary_iface_set(struct hard_iface *hard_iface) |
71 | { | 71 | { |
72 | struct batman_ogm_packet *batman_ogm_packet; | 72 | struct batman_ogm_packet *batman_ogm_packet; |
73 | 73 | ||
@@ -1191,7 +1191,7 @@ static struct bat_algo_ops batman_iv __read_mostly = { | |||
1191 | .name = "BATMAN IV", | 1191 | .name = "BATMAN IV", |
1192 | .bat_iface_enable = bat_iv_ogm_iface_enable, | 1192 | .bat_iface_enable = bat_iv_ogm_iface_enable, |
1193 | .bat_iface_disable = bat_iv_ogm_iface_disable, | 1193 | .bat_iface_disable = bat_iv_ogm_iface_disable, |
1194 | .bat_ogm_init_primary = bat_iv_ogm_init_primary, | 1194 | .bat_primary_iface_set = bat_iv_ogm_primary_iface_set, |
1195 | .bat_ogm_update_mac = bat_iv_ogm_update_mac, | 1195 | .bat_ogm_update_mac = bat_iv_ogm_update_mac, |
1196 | .bat_ogm_schedule = bat_iv_ogm_schedule, | 1196 | .bat_ogm_schedule = bat_iv_ogm_schedule, |
1197 | .bat_ogm_emit = bat_iv_ogm_emit, | 1197 | .bat_ogm_emit = bat_iv_ogm_emit, |
diff --git a/net/batman-adv/hard-interface.c b/net/batman-adv/hard-interface.c index 3b391fd3b5b2..75a555b8587e 100644 --- a/net/batman-adv/hard-interface.c +++ b/net/batman-adv/hard-interface.c | |||
@@ -146,7 +146,7 @@ static void primary_if_select(struct bat_priv *bat_priv, | |||
146 | if (!new_hard_iface) | 146 | if (!new_hard_iface) |
147 | goto out; | 147 | goto out; |
148 | 148 | ||
149 | bat_priv->bat_algo_ops->bat_ogm_init_primary(new_hard_iface); | 149 | bat_priv->bat_algo_ops->bat_primary_iface_set(new_hard_iface); |
150 | primary_if_update_addr(bat_priv, curr_hard_iface); | 150 | primary_if_update_addr(bat_priv, curr_hard_iface); |
151 | 151 | ||
152 | out: | 152 | out: |
diff --git a/net/batman-adv/main.c b/net/batman-adv/main.c index a47a6ced1cb7..791327219531 100644 --- a/net/batman-adv/main.c +++ b/net/batman-adv/main.c | |||
@@ -210,7 +210,7 @@ int bat_algo_register(struct bat_algo_ops *bat_algo_ops) | |||
210 | /* all algorithms must implement all ops (for now) */ | 210 | /* all algorithms must implement all ops (for now) */ |
211 | if (!bat_algo_ops->bat_iface_enable || | 211 | if (!bat_algo_ops->bat_iface_enable || |
212 | !bat_algo_ops->bat_iface_disable || | 212 | !bat_algo_ops->bat_iface_disable || |
213 | !bat_algo_ops->bat_ogm_init_primary || | 213 | !bat_algo_ops->bat_primary_iface_set || |
214 | !bat_algo_ops->bat_ogm_update_mac || | 214 | !bat_algo_ops->bat_ogm_update_mac || |
215 | !bat_algo_ops->bat_ogm_schedule || | 215 | !bat_algo_ops->bat_ogm_schedule || |
216 | !bat_algo_ops->bat_ogm_emit || | 216 | !bat_algo_ops->bat_ogm_emit || |
diff --git a/net/batman-adv/types.h b/net/batman-adv/types.h index dd78023800bd..4d93aad899f7 100644 --- a/net/batman-adv/types.h +++ b/net/batman-adv/types.h | |||
@@ -381,8 +381,8 @@ struct bat_algo_ops { | |||
381 | int (*bat_iface_enable)(struct hard_iface *hard_iface); | 381 | int (*bat_iface_enable)(struct hard_iface *hard_iface); |
382 | /* de-init routing info when hard-interface is disabled */ | 382 | /* de-init routing info when hard-interface is disabled */ |
383 | void (*bat_iface_disable)(struct hard_iface *hard_iface); | 383 | void (*bat_iface_disable)(struct hard_iface *hard_iface); |
384 | /* init primary OGM when primary interface is selected */ | 384 | /* called when primary interface is selected / changed */ |
385 | void (*bat_ogm_init_primary)(struct hard_iface *hard_iface); | 385 | void (*bat_primary_iface_set)(struct hard_iface *hard_iface); |
386 | /* init mac addresses of the OGM belonging to this hard-interface */ | 386 | /* init mac addresses of the OGM belonging to this hard-interface */ |
387 | void (*bat_ogm_update_mac)(struct hard_iface *hard_iface); | 387 | void (*bat_ogm_update_mac)(struct hard_iface *hard_iface); |
388 | /* prepare a new outgoing OGM for the send queue */ | 388 | /* prepare a new outgoing OGM for the send queue */ |