bridge: cfm: remove redundant return

Return statements are not needed in Void function.

Signed-off-by: gushengxian <gushengxian@yulong.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
gushengxian 2021-06-21 23:05:19 -07:00 committed by David S. Miller
parent f2fcffe392
commit 98534fce52
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ static void br_cfm_notify(int event, const struct net_bridge_port *port)
{
u32 filter = RTEXT_FILTER_CFM_STATUS;
return br_info_notify(event, port->br, NULL, filter);
br_info_notify(event, port->br, NULL, filter);
}
static void cc_peer_enable(struct br_cfm_peer_mep *peer_mep)