From: kbuild test robot Date: Thu, 2 Apr 2020 01:25:48 +0000 (+0800) Subject: net: dsa: dsa_bridge_mtu_normalization() can be static X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bf88dc327de8c311078da557788af5d88b74c8e5;p=linux.git net: dsa: dsa_bridge_mtu_normalization() can be static Fixes: f41071407c85 ("net: dsa: implement auto-normalization of MTU for bridge hardware datapath") Signed-off-by: kbuild test robot Signed-off-by: David S. Miller --- diff --git a/net/dsa/slave.c b/net/dsa/slave.c index 5390ff541658b..e94eb1aac6029 100644 --- a/net/dsa/slave.c +++ b/net/dsa/slave.c @@ -1338,7 +1338,7 @@ static void dsa_hw_port_list_free(struct list_head *hw_port_list) } /* Make the hardware datapath to/from @dev limited to a common MTU */ -void dsa_bridge_mtu_normalization(struct dsa_port *dp) +static void dsa_bridge_mtu_normalization(struct dsa_port *dp) { struct list_head hw_port_list; struct dsa_switch_tree *dst;