Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

s390/zcrypt_msgtype50: Cleanup debug code

The dynamic debugging provides function names on request. So remove
all explicit function strings.

Reviewed-by: Harald Freudenberger <freude@linux.ibm.com>
Signed-off-by: Holger Dengler <dengler@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>

authored by

Holger Dengler and committed by
Vasily Gorbik
a7a88eea 1849850e

+5 -5
+5 -5
drivers/s390/crypto/zcrypt_msgtype50.c
··· 427 427 len = t80h->len; 428 428 if (len > reply->bufsize || len > msg->bufsize || 429 429 len != reply->len) { 430 - pr_debug("%s len mismatch => EMSGSIZE\n", __func__); 430 + pr_debug("len mismatch => EMSGSIZE\n"); 431 431 msg->rc = -EMSGSIZE; 432 432 goto out; 433 433 } ··· 487 487 out: 488 488 ap_msg->private = NULL; 489 489 if (rc) 490 - pr_debug("%s send me cprb at dev=%02x.%04x rc=%d\n", 491 - __func__, AP_QID_CARD(zq->queue->qid), 490 + pr_debug("send me cprb at dev=%02x.%04x rc=%d\n", 491 + AP_QID_CARD(zq->queue->qid), 492 492 AP_QID_QUEUE(zq->queue->qid), rc); 493 493 return rc; 494 494 } ··· 537 537 out: 538 538 ap_msg->private = NULL; 539 539 if (rc) 540 - pr_debug("%s send crt cprb at dev=%02x.%04x rc=%d\n", 541 - __func__, AP_QID_CARD(zq->queue->qid), 540 + pr_debug("send crt cprb at dev=%02x.%04x rc=%d\n", 541 + AP_QID_CARD(zq->queue->qid), 542 542 AP_QID_QUEUE(zq->queue->qid), rc); 543 543 return rc; 544 544 }