Commit a74cd4af authored by Roland Dreier's avatar Roland Dreier

IB: Whitespace cleanups

Remove trailing whitespace and fix indentation that with spaces
instead of tabs.
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent d844183d
...@@ -462,7 +462,6 @@ void ib_uverbs_cq_event_handler(struct ib_event *event, void *context_ptr) ...@@ -462,7 +462,6 @@ void ib_uverbs_cq_event_handler(struct ib_event *event, void *context_ptr)
ib_uverbs_async_handler(uobj->uverbs_file, uobj->uobject.user_handle, ib_uverbs_async_handler(uobj->uverbs_file, uobj->uobject.user_handle,
event->event, &uobj->async_list, event->event, &uobj->async_list,
&uobj->async_events_reported); &uobj->async_events_reported);
} }
void ib_uverbs_qp_event_handler(struct ib_event *event, void *context_ptr) void ib_uverbs_qp_event_handler(struct ib_event *event, void *context_ptr)
......
...@@ -574,8 +574,7 @@ int ib_destroy_cq(struct ib_cq *cq) ...@@ -574,8 +574,7 @@ int ib_destroy_cq(struct ib_cq *cq)
} }
EXPORT_SYMBOL(ib_destroy_cq); EXPORT_SYMBOL(ib_destroy_cq);
int ib_resize_cq(struct ib_cq *cq, int ib_resize_cq(struct ib_cq *cq, int cqe)
int cqe)
{ {
return cq->device->resize_cq ? return cq->device->resize_cq ?
cq->device->resize_cq(cq, cqe, NULL) : -ENOSYS; cq->device->resize_cq(cq, cqe, NULL) : -ENOSYS;
......
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