1
0
Fork 0

[IB] ucm: quiet sparse warnings

Make ctx_id_mutex and ctx_id_table static to quiet sparse warnings.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
hifive-unleashed-5.1
Roland Dreier 2005-10-17 15:38:50 -07:00
parent 07d357d0cb
commit 762a03e21e
1 changed files with 2 additions and 2 deletions

View File

@ -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)