IB/hns: fix boolreturn.cocci warnings
authorkbuild test robot <fengguang.wu@intel.com>
Tue, 25 Jul 2017 05:36:24 +0000 (13:36 +0800)
committerDoug Ledford <dledford@redhat.com>
Fri, 28 Jul 2017 18:51:13 +0000 (14:51 -0400)
drivers/infiniband/hw/hns/hns_roce_qp.c:802:9-10: WARNING: return of 0/1 in function 'hns_roce_wq_overflow' with return type bool

 Return statements in functions returning bool should use
 true/false instead of 1/0.
Generated by: scripts/coccinelle/misc/boolreturn.cocci

Fixes: 7d1b6a678e0b ("IB/hns: Support compile test for hns RoCE driver")
CC: Matan Barak <matanb@mellanox.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/hns/hns_roce_qp.c

index 054c52699090dfa09fba494e810094111b0bc7f4..f5dd21c2d275eb6eb0db9cfe335f230cc9e33874 100644 (file)
@@ -799,7 +799,7 @@ bool hns_roce_wq_overflow(struct hns_roce_wq *hr_wq, int nreq,
 
        cur = hr_wq->head - hr_wq->tail;
        if (likely(cur + nreq < hr_wq->max_post))
-               return 0;
+               return false;
 
        hr_cq = to_hr_cq(ib_cq);
        spin_lock(&hr_cq->lock);