net/mlx5e: Cleanup unused function parameter
authorTariq Toukan <tariqt@nvidia.com>
Wed, 31 Mar 2021 08:02:09 +0000 (11:02 +0300)
committerSaeed Mahameed <saeedm@nvidia.com>
Fri, 16 Apr 2021 18:47:59 +0000 (11:47 -0700)
Socket parameter is not used in accel_rule_init(), remove it.

Signed-off-by: Tariq Toukan <tariqt@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_rx.c

index 8c0f78c092154c7f280404eba136f5aa877e6060..76fd4b2300038abda8d8dd9e477df7b3c5adc6b1 100644 (file)
@@ -119,8 +119,7 @@ out:
        complete(&priv_rx->add_ctx);
 }
 
-static void accel_rule_init(struct accel_rule *rule, struct mlx5e_priv *priv,
-                           struct sock *sk)
+static void accel_rule_init(struct accel_rule *rule, struct mlx5e_priv *priv)
 {
        INIT_WORK(&rule->work, accel_rule_handle_work);
        rule->priv = priv;
@@ -618,7 +617,7 @@ int mlx5e_ktls_add_rx(struct net_device *netdev, struct sock *sk,
 
        init_completion(&priv_rx->add_ctx);
 
-       accel_rule_init(&priv_rx->rule, priv, sk);
+       accel_rule_init(&priv_rx->rule, priv);
        resync = &priv_rx->resync;
        resync_init(resync, priv);
        tls_offload_ctx_rx(tls_ctx)->resync_async = &resync->core;