projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
660b1de
)
i40iw: fix spelling mistake: "allloc_buf" -> "alloc_buf"
author
Colin Ian King
<colin.king@canonical.com>
Fri, 21 Jul 2017 22:19:33 +0000
(23:19 +0100)
committer
Doug Ledford
<dledford@redhat.com>
Fri, 18 Aug 2017 18:01:10 +0000
(14:01 -0400)
Trivial fix to spelling mistake in i40iw_debug message and
also split up a couple of lines that are too long and cause
checkpatch warnings
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/i40iw/i40iw_puda.c
patch
|
blob
|
history
diff --git
a/drivers/infiniband/hw/i40iw/i40iw_puda.c
b/drivers/infiniband/hw/i40iw/i40iw_puda.c
index 71050c5d29a05f3f6cb9433aafd7e09fbb5695aa..40c3137a7325b5cabf119d6cd7ddcb23149df7ba 100644
(file)
--- a/
drivers/infiniband/hw/i40iw/i40iw_puda.c
+++ b/
drivers/infiniband/hw/i40iw/i40iw_puda.c
@@
-949,14
+949,16
@@
enum i40iw_status_code i40iw_puda_create_rsrc(struct i40iw_sc_vsi *vsi,
ret = i40iw_puda_qp_create(rsrc);
}
if (ret) {
- i40iw_debug(dev, I40IW_DEBUG_PUDA, "[%s] error qp_create\n", __func__);
+ i40iw_debug(dev, I40IW_DEBUG_PUDA, "[%s] error qp_create\n",
+ __func__);
goto error;
}
rsrc->completion = PUDA_QP_CREATED;
ret = i40iw_puda_allocbufs(rsrc, info->tx_buf_cnt + info->rq_size);
if (ret) {
- i40iw_debug(dev, I40IW_DEBUG_PUDA, "[%s] error allloc_buf\n", __func__);
+ i40iw_debug(dev, I40IW_DEBUG_PUDA, "[%s] error alloc_buf\n",
+ __func__);
goto error;
}