bridge/br_netlink.c: no need to return void function
JIRA: https://issues.redhat.com/browse/RHEL-57739
commit 4fd1edcdf13c0d234543ecf502092be65c5177db
Author: Hangbin Liu <liuhangbin@gmail.com>
Date: Fri Apr 19 16:02:00 2024 +0800
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>
Signed-off-by: Jamie Bainbridge <jbainbri@redhat.com>
This commit is contained in:
parent
19911f146d
commit
d0150c2f32
|
@ -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