mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
bridge/br_netlink.c: no need to return void function
br_info_notify is a void function. There is no need to return.
Fixes: b6d0425b81
("bridge: cfm: Netlink Notifications.")
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Acked-by: Nikolay Aleksandrov <razor@blackwall.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
70dcdf5f8c
commit
4fd1edcdf1
@ -667,7 +667,7 @@ void br_ifinfo_notify(int event, const struct net_bridge *br,
|
||||
{
|
||||
u32 filter = RTEXT_FILTER_BRVLAN_COMPRESSED;
|
||||
|
||||
return br_info_notify(event, br, port, filter);
|
||||
br_info_notify(event, br, port, filter);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user