Commit 4fd1edcd authored by Hangbin Liu's avatar Hangbin Liu Committed by David S. Miller

bridge/br_netlink.c: no need to return void function

br_info_notify is a void function. There is no need to return.

Fixes: b6d0425b ("bridge: cfm: Netlink Notifications.")
Signed-off-by: default avatarHangbin Liu <liuhangbin@gmail.com>
Acked-by: default avatarNikolay Aleksandrov <razor@blackwall.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 70dcdf5f
...@@ -667,7 +667,7 @@ void br_ifinfo_notify(int event, const struct net_bridge *br, ...@@ -667,7 +667,7 @@ void br_ifinfo_notify(int event, const struct net_bridge *br,
{ {
u32 filter = RTEXT_FILTER_BRVLAN_COMPRESSED; u32 filter = RTEXT_FILTER_BRVLAN_COMPRESSED;
return br_info_notify(event, br, port, filter); br_info_notify(event, br, port, filter);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment