Skip to content

Commit

Permalink
cxgb4: Convert PDBG to pr_debug the second
Browse files Browse the repository at this point in the history
A couple spots were missed in the original patch to implement this
change.  Add those spots.

Fixes: a9a4288 (cxgb4: Convert PDBG to pr_debug)
Signed-off-by: Doug Ledford <dledford@redhat.com>
  • Loading branch information
Doug Ledford committed Apr 21, 2017
1 parent 4418b27 commit 339e757
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/infiniband/hw/cxgb4/cm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit 339e757

Please sign in to comment.