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

PR:		207858
Submitted by:	David Binderman
This commit is contained in:
Navdeep Parhar 2016-03-10 14:17:24 +00:00
parent a151f3a7ef
commit a079d3866a

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