Commit a7a88eea authored by Holger Dengler's avatar Holger Dengler Committed by Vasily Gorbik

s390/zcrypt_msgtype50: Cleanup debug code

The dynamic debugging provides function names on request. So remove
all explicit function strings.
Reviewed-by: default avatarHarald Freudenberger <freude@linux.ibm.com>
Signed-off-by: default avatarHolger Dengler <dengler@linux.ibm.com>
Signed-off-by: default avatarVasily Gorbik <gor@linux.ibm.com>
parent 1849850e
...@@ -427,7 +427,7 @@ static void zcrypt_msgtype50_receive(struct ap_queue *aq, ...@@ -427,7 +427,7 @@ static void zcrypt_msgtype50_receive(struct ap_queue *aq,
len = t80h->len; len = t80h->len;
if (len > reply->bufsize || len > msg->bufsize || if (len > reply->bufsize || len > msg->bufsize ||
len != reply->len) { len != reply->len) {
pr_debug("%s len mismatch => EMSGSIZE\n", __func__); pr_debug("len mismatch => EMSGSIZE\n");
msg->rc = -EMSGSIZE; msg->rc = -EMSGSIZE;
goto out; goto out;
} }
...@@ -487,8 +487,8 @@ static long zcrypt_msgtype50_modexpo(struct zcrypt_queue *zq, ...@@ -487,8 +487,8 @@ static long zcrypt_msgtype50_modexpo(struct zcrypt_queue *zq,
out: out:
ap_msg->private = NULL; ap_msg->private = NULL;
if (rc) if (rc)
pr_debug("%s send me cprb at dev=%02x.%04x rc=%d\n", pr_debug("send me cprb at dev=%02x.%04x rc=%d\n",
__func__, AP_QID_CARD(zq->queue->qid), AP_QID_CARD(zq->queue->qid),
AP_QID_QUEUE(zq->queue->qid), rc); AP_QID_QUEUE(zq->queue->qid), rc);
return rc; return rc;
} }
...@@ -537,8 +537,8 @@ static long zcrypt_msgtype50_modexpo_crt(struct zcrypt_queue *zq, ...@@ -537,8 +537,8 @@ static long zcrypt_msgtype50_modexpo_crt(struct zcrypt_queue *zq,
out: out:
ap_msg->private = NULL; ap_msg->private = NULL;
if (rc) if (rc)
pr_debug("%s send crt cprb at dev=%02x.%04x rc=%d\n", pr_debug("send crt cprb at dev=%02x.%04x rc=%d\n",
__func__, AP_QID_CARD(zq->queue->qid), AP_QID_CARD(zq->queue->qid),
AP_QID_QUEUE(zq->queue->qid), rc); AP_QID_QUEUE(zq->queue->qid), rc);
return rc; return rc;
} }
......
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