Commit 8b0c05dc authored by Andrew F. Davis's avatar Andrew F. Davis Committed by Jason Gunthorpe

IB/ocrdma: Remove unneeded conversions to bool

Found with scripts/coccinelle/misc/boolconv.cocci.
Signed-off-by: default avatarAndrew F. Davis <afd@ti.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 54a6d63f
...@@ -461,7 +461,7 @@ static struct ocrdma_pd *_ocrdma_alloc_pd(struct ocrdma_dev *dev, ...@@ -461,7 +461,7 @@ static struct ocrdma_pd *_ocrdma_alloc_pd(struct ocrdma_dev *dev,
static inline int is_ucontext_pd(struct ocrdma_ucontext *uctx, static inline int is_ucontext_pd(struct ocrdma_ucontext *uctx,
struct ocrdma_pd *pd) struct ocrdma_pd *pd)
{ {
return (uctx->cntxt_pd == pd ? true : false); return (uctx->cntxt_pd == pd);
} }
static int _ocrdma_dealloc_pd(struct ocrdma_dev *dev, static int _ocrdma_dealloc_pd(struct ocrdma_dev *dev,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment