cxgb(4): Remove redundant part of an assertion.

PR:		207858
Submitted by:	David Binderman
This commit is contained in:
np 2016-03-10 14:17:24 +00:00
parent 4d9e23ad72
commit 04b03bf206

View File

@ -286,7 +286,7 @@ release_tid(struct toedev *tod, unsigned int tid, int qset)
struct tid_info *t = &td->tid_maps;
#endif
KASSERT(tid >= 0 && tid < t->ntids,
KASSERT(tid < t->ntids,
("%s: tid=%d, ntids=%d", __func__, tid, t->ntids));
m = M_GETHDR_OFLD(qset, CPL_PRIORITY_CONTROL, cpl);