Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 84305d71 authored by Leon Romanovsky's avatar Leon Romanovsky Committed by Doug Ledford
Browse files

RDMA/mlx5: Limit scope of get vector affinity local function



The mlx5_ib_get_vector_affinity() call is local to main.c file and there
is no need to be declared globally visible.

Fixes: 40b24403 ("mlx5: support ->get_vector_affinity")
Signed-off-by: default avatarLeon Romanovsky <leon@kernel.org>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent fab773cb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3819,8 +3819,8 @@ static void init_delay_drop(struct mlx5_ib_dev *dev)
		mlx5_ib_warn(dev, "Failed to init delay drop debugfs\n");
}

const struct cpumask *mlx5_ib_get_vector_affinity(struct ib_device *ibdev,
		int comp_vector)
static const struct cpumask *
mlx5_ib_get_vector_affinity(struct ib_device *ibdev, int comp_vector)
{
	struct mlx5_ib_dev *dev = to_mdev(ibdev);