Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5a137df1 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

[media] cec: use __func__ in log messages



The hardcoded function name is actually wrong. Use __func__ instead.

Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent fabd5bd6
Loading
Loading
Loading
Loading
+10 −10
Original line number Original line Diff line number Diff line
@@ -606,17 +606,17 @@ int cec_transmit_msg_fh(struct cec_adapter *adap, struct cec_msg *msg,


	/* Sanity checks */
	/* Sanity checks */
	if (msg->len == 0 || msg->len > CEC_MAX_MSG_SIZE) {
	if (msg->len == 0 || msg->len > CEC_MAX_MSG_SIZE) {
		dprintk(1, "cec_transmit_msg: invalid length %d\n", msg->len);
		dprintk(1, "%s: invalid length %d\n", __func__, msg->len);
		return -EINVAL;
		return -EINVAL;
	}
	}
	if (msg->timeout && msg->len == 1) {
	if (msg->timeout && msg->len == 1) {
		dprintk(1, "cec_transmit_msg: can't reply for poll msg\n");
		dprintk(1, "%s: can't reply for poll msg\n", __func__);
		return -EINVAL;
		return -EINVAL;
	}
	}
	memset(msg->msg + msg->len, 0, sizeof(msg->msg) - msg->len);
	memset(msg->msg + msg->len, 0, sizeof(msg->msg) - msg->len);
	if (msg->len == 1) {
	if (msg->len == 1) {
		if (cec_msg_destination(msg) == 0xf) {
		if (cec_msg_destination(msg) == 0xf) {
			dprintk(1, "cec_transmit_msg: invalid poll message\n");
			dprintk(1, "%s: invalid poll message\n", __func__);
			return -EINVAL;
			return -EINVAL;
		}
		}
		if (cec_has_log_addr(adap, cec_msg_destination(msg))) {
		if (cec_has_log_addr(adap, cec_msg_destination(msg))) {
@@ -637,13 +637,13 @@ int cec_transmit_msg_fh(struct cec_adapter *adap, struct cec_msg *msg,
	}
	}
	if (msg->len > 1 && !cec_msg_is_broadcast(msg) &&
	if (msg->len > 1 && !cec_msg_is_broadcast(msg) &&
	    cec_has_log_addr(adap, cec_msg_destination(msg))) {
	    cec_has_log_addr(adap, cec_msg_destination(msg))) {
		dprintk(1, "cec_transmit_msg: destination is the adapter itself\n");
		dprintk(1, "%s: destination is the adapter itself\n", __func__);
		return -EINVAL;
		return -EINVAL;
	}
	}
	if (msg->len > 1 && adap->is_configured &&
	if (msg->len > 1 && adap->is_configured &&
	    !cec_has_log_addr(adap, cec_msg_initiator(msg))) {
	    !cec_has_log_addr(adap, cec_msg_initiator(msg))) {
		dprintk(1, "cec_transmit_msg: initiator has unknown logical address %d\n",
		dprintk(1, "%s: initiator has unknown logical address %d\n",
			cec_msg_initiator(msg));
			__func__, cec_msg_initiator(msg));
		return -EINVAL;
		return -EINVAL;
	}
	}
	if (!adap->is_configured && !adap->is_configuring &&
	if (!adap->is_configured && !adap->is_configuring &&
@@ -663,11 +663,11 @@ int cec_transmit_msg_fh(struct cec_adapter *adap, struct cec_msg *msg,
	}
	}


	if (msg->timeout)
	if (msg->timeout)
		dprintk(2, "cec_transmit_msg: %*ph (wait for 0x%02x%s)\n",
		dprintk(2, "%s: %*ph (wait for 0x%02x%s)\n",
			msg->len, msg->msg, msg->reply, !block ? ", nb" : "");
			__func__, msg->len, msg->msg, msg->reply, !block ? ", nb" : "");
	else
	else
		dprintk(2, "cec_transmit_msg: %*ph%s\n",
		dprintk(2, "%s: %*ph%s\n",
			msg->len, msg->msg, !block ? " (nb)" : "");
			__func__, msg->len, msg->msg, !block ? " (nb)" : "");


	data->msg = *msg;
	data->msg = *msg;
	data->fh = fh;
	data->fh = fh;