projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4418b27
)
cxgb4: Convert PDBG to pr_debug the second
author
Doug Ledford
<dledford@redhat.com>
Fri, 21 Apr 2017 02:18:54 +0000
(22:18 -0400)
committer
Doug Ledford
<dledford@redhat.com>
Fri, 21 Apr 2017 02:18:54 +0000
(22:18 -0400)
A couple spots were missed in the original patch to implement this
change. Add those spots.
Fixes:
a9a42886d0b3
(cxgb4: Convert PDBG to pr_debug)
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/cxgb4/cm.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/infiniband/hw/cxgb4/cm.c
b/drivers/infiniband/hw/cxgb4/cm.c
index ae543d3617c25e44a84883cfab97f96c42ad3b6b..02faf1f125fd88e73b98cb4de9ca95913f3324cd 100644
(file)
--- a/
drivers/infiniband/hw/cxgb4/cm.c
+++ b/
drivers/infiniband/hw/cxgb4/cm.c
@@
-827,7
+827,7
@@
static int send_connect(struct c4iw_ep *ep)
t6req->params =
cpu_to_be64(FILTER_TUPLE_V(params));
t6req->rsvd = cpu_to_be32(isn);
-
PDBG
("%s snd_isn %u\n", __func__, t6req->rsvd);
+
pr_debug
("%s snd_isn %u\n", __func__, t6req->rsvd);
t6req->opt2 = cpu_to_be32(opt2);
}
}
@@
-882,7
+882,7
@@
static int send_connect(struct c4iw_ep *ep)
t6req6->params =
cpu_to_be64(FILTER_TUPLE_V(params));
t6req6->rsvd = cpu_to_be32(isn);
-
PDBG
("%s snd_isn %u\n", __func__, t6req6->rsvd);
+
pr_debug
("%s snd_isn %u\n", __func__, t6req6->rsvd);
t6req6->opt2 = cpu_to_be32(opt2);
}