net/mlx5e: Remove unused parameter
authorMaxim Mikityanskiy <maximmi@mellanox.com>
Thu, 7 Mar 2019 17:30:30 +0000 (19:30 +0200)
committerSaeed Mahameed <saeedm@mellanox.com>
Tue, 23 Apr 2019 19:09:20 +0000 (12:09 -0700)
params is unused in mlx5e_init_di_list.

Signed-off-by: Maxim Mikityanskiy <maximmi@mellanox.com>
Reviewed-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/en_main.c

index 23df6f4..8185773 100644 (file)
@@ -470,7 +470,6 @@ static void mlx5e_init_frags_partition(struct mlx5e_rq *rq)
 }
 
 static int mlx5e_init_di_list(struct mlx5e_rq *rq,
-                             struct mlx5e_params *params,
                              int wq_sz, int cpu)
 {
        int len = wq_sz << rq->wqe.info.log_num_frags;
@@ -598,7 +597,7 @@ static int mlx5e_alloc_rq(struct mlx5e_channel *c,
                        goto err_free;
                }
 
-               err = mlx5e_init_di_list(rq, params, wq_sz, c->cpu);
+               err = mlx5e_init_di_list(rq, wq_sz, c->cpu);
                if (err)
                        goto err_free;
                rq->post_wqes = mlx5e_post_rx_wqes;