Message ID | 1536146162-132732-1-git-send-email-weiyongjun1@huawei.com (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | [net-next] net/mlx5e: Make function mlx5i_grp_sw_update_stats() static | expand |
On Wed, Sep 05, 2018 at 11:16:02AM +0000, Wei Yongjun wrote: > 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> > --- > drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Thanks, Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
From: Wei Yongjun <weiyongjun1@huawei.com> Date: Wed, 5 Sep 2018 11:16:02 +0000 > 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> Applied.
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c b/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c index 48886b3..3dd9f88 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;
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> --- drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)