diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/infiniband/core/verbs.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/drivers/infiniband/core/verbs.c b/drivers/infiniband/core/verbs.c index 72d3ef786db5..4f51d797f84a 100644 --- a/drivers/infiniband/core/verbs.c +++ b/drivers/infiniband/core/verbs.c | |||
@@ -324,16 +324,8 @@ EXPORT_SYMBOL(ib_destroy_cq); | |||
324 | int ib_resize_cq(struct ib_cq *cq, | 324 | int ib_resize_cq(struct ib_cq *cq, |
325 | int cqe) | 325 | int cqe) |
326 | { | 326 | { |
327 | int ret; | 327 | return cq->device->resize_cq ? |
328 | 328 | cq->device->resize_cq(cq, cqe) : -ENOSYS; | |
329 | if (!cq->device->resize_cq) | ||
330 | return -ENOSYS; | ||
331 | |||
332 | ret = cq->device->resize_cq(cq, &cqe); | ||
333 | if (!ret) | ||
334 | cq->cqe = cqe; | ||
335 | |||
336 | return ret; | ||
337 | } | 329 | } |
338 | EXPORT_SYMBOL(ib_resize_cq); | 330 | EXPORT_SYMBOL(ib_resize_cq); |
339 | 331 | ||