aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAndrew Lunn <andrew@lunn.ch>2020-05-28 23:43:24 +0200
committerDavid S. Miller <davem@davemloft.net>2020-05-29 17:28:30 -0700
commitfd55199d3b762f9555c66a1bc4bf6eac3901fc2f (patch)
treee8d0f73318bf4a213ff78ae1b56421fe9ccd12f9
parentnfp: flower: fix incorrect flag assignment (diff)
downloadwireguard-linux-fd55199d3b762f9555c66a1bc4bf6eac3901fc2f.tar.xz
wireguard-linux-fd55199d3b762f9555c66a1bc4bf6eac3901fc2f.zip
net: ethtool: cabletest: Make ethnl_act_cable_test_tdr_cfg static
kbuild test robot is reporting: net/ethtool/cabletest.c:230:5: warning: no previous prototype for Mark the function as static. Reported-by: kbuild test robot <lkp@intel.com> Signed-off-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/ethtool/cabletest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ethtool/cabletest.c b/net/ethtool/cabletest.c
index 9991688d7d1d..7b7a0456c15c 100644
--- a/net/ethtool/cabletest.c
+++ b/net/ethtool/cabletest.c
@@ -227,9 +227,9 @@ cable_test_tdr_act_policy[ETHTOOL_A_CABLE_TEST_TDR_MAX + 1] = {
};
/* CABLE_TEST_TDR_ACT */
-int ethnl_act_cable_test_tdr_cfg(const struct nlattr *nest,
- struct genl_info *info,
- struct phy_tdr_config *cfg)
+static int ethnl_act_cable_test_tdr_cfg(const struct nlattr *nest,
+ struct genl_info *info,
+ struct phy_tdr_config *cfg)
{
struct nlattr *tb[ETHTOOL_A_CABLE_TEST_TDR_CFG_MAX + 1];
int ret;