Remove redundant integer cast in ibcore. The "ref_count" field already

has integer type.

MFC after:	1 week
Sponsored by:	Mellanox Technologies
This commit is contained in:
hselasky 2018-03-19 13:51:33 +00:00
parent 0b45cd9de6
commit 88ce84a7d6

View File

@ -155,7 +155,7 @@ static void ib_fmr_batch_release(struct ib_fmr_pool *pool)
#ifdef DEBUG
if (fmr->ref_count !=0) {
pr_warn(PFX "Unmapping FMR %p with ref count %d\n",
fmr, (int)fmr->ref_count);
fmr, fmr->ref_count);
}
#endif
}