batadv_softif_destroy_netlink() is used in the file where it is defined only, therefore it must be static.
Introduced by 5317331775c3168b8155b03ec89b1c4c508b9043 ("batman-adv: Allow to use rntl_link for device creation/deletion")
Signed-off-by: Antonio Quartulli ordex@autistici.org --- soft-interface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/soft-interface.c b/soft-interface.c index 39caefa..403b8c4 100644 --- a/soft-interface.c +++ b/soft-interface.c @@ -653,8 +653,8 @@ void batadv_softif_destroy_sysfs(struct net_device *soft_iface) * @soft_iface: the to-be-removed batman-adv interface * @head: list pointer */ -void batadv_softif_destroy_netlink(struct net_device *soft_iface, - struct list_head *head) +static void batadv_softif_destroy_netlink(struct net_device *soft_iface, + struct list_head *head) { struct batadv_hard_iface *hard_iface;
On Saturday, February 16, 2013 20:50:52 Antonio Quartulli wrote:
batadv_softif_destroy_netlink() is used in the file where it is defined only, therefore it must be static.
Introduced by 5317331775c3168b8155b03ec89b1c4c508b9043 ("batman-adv: Allow to use rntl_link for device creation/deletion")
Signed-off-by: Antonio Quartulli ordex@autistici.org
soft-interface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
Applied in revision 17d1d49.
Thanks, Marek
b.a.t.m.a.n@lists.open-mesh.org