mirror of
https://github.com/opnsense/src.git
synced 2026-03-05 14:50:41 -05:00
With clang 15, the following -Werror warning is produced:
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c:1926:6: error: variable 'num_alloc_xa_entries' set but not used [-Werror,-Wunused-but-set-variable]
int num_alloc_xa_entries = 0;
^
The 'num_alloc_xa_entries' variable appears to have been a debugging aid
that has never been used for anything, so remove it.
MFC after: 3 days
|
||
|---|---|---|
| .. | ||
| mlx5_ib.h | ||
| mlx5_ib_ah.c | ||
| mlx5_ib_cong.c | ||
| mlx5_ib_cq.c | ||
| mlx5_ib_devx.c | ||
| mlx5_ib_doorbell.c | ||
| mlx5_ib_gsi.c | ||
| mlx5_ib_mad.c | ||
| mlx5_ib_main.c | ||
| mlx5_ib_mem.c | ||
| mlx5_ib_mr.c | ||
| mlx5_ib_qp.c | ||
| mlx5_ib_srq.c | ||
| mlx5_ib_virt.c | ||