diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2018-09-05 14:16:02 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-09-05 18:06:13 +0300 |
commit | fbb66ad5dcbebc1bb9330acfbd684df06e016d56 (patch) | |
tree | 4d25ada012f12354ec9f9518a12ea2b57fb2930b /drivers/net | |
parent | 579d03fecb23858e5070ea168e38442ccef80a9d (diff) | |
download | linux-fbb66ad5dcbebc1bb9330acfbd684df06e016d56.tar.xz |
net/mlx5e: Make function mlx5i_grp_sw_update_stats() static
Fixes the following sparse warning:
drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c:119:6: warning:
symbol 'mlx5i_grp_sw_update_stats' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c b/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c index 48886b3ed320..3dd9f885ed8b 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c @@ -116,7 +116,7 @@ static void mlx5i_cleanup(struct mlx5e_priv *priv) /* Do nothing .. */ } -void mlx5i_grp_sw_update_stats(struct mlx5e_priv *priv) +static void mlx5i_grp_sw_update_stats(struct mlx5e_priv *priv) { struct mlx5e_sw_stats s = { 0 }; int i, j; |