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:
Hans Petter Selasky 2018-03-19 13:51:33 +00:00
parent b43b604b30
commit 5cd5781c75
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=331204

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
}