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

Commit 762a03e2 authored by Roland Dreier's avatar Roland Dreier
Browse files

[IB] ucm: quiet sparse warnings



Make ctx_id_mutex and ctx_id_table static to quiet sparse warnings.

Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 07d357d0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -113,8 +113,8 @@ static struct ib_client ucm_client = {
	.remove = ib_ucm_remove_one
};

DECLARE_MUTEX(ctx_id_mutex);
DEFINE_IDR(ctx_id_table);
static DECLARE_MUTEX(ctx_id_mutex);
static DEFINE_IDR(ctx_id_table);
static DECLARE_BITMAP(dev_map, IB_UCM_MAX_DEVICES);

static struct ib_ucm_context *ib_ucm_ctx_get(struct ib_ucm_file *file, int id)