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

Commit 549038c5 authored by Amir Samuelov's avatar Amir Samuelov Committed by Gerrit - the friendly Code Review server
Browse files

soc: qcom: spcom: fix pr_err() missing "name" parameter



the print format has "%s" but is missing the "name" parameter.

Change-Id: Ib2fcbcf2d477552c8d2fbf16487854ac13c1b3ca
Signed-off-by: default avatarAmir Samuelov <amirs@codeaurora.org>
parent 04301c31
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1920,7 +1920,8 @@ static inline int handle_poll(struct file *file,
		mutex_unlock(&ch->lock);
		break;
	default:
		spcom_pr_err("ch [%s] unsupported ioctl:%u\n", op->cmd_id);
		spcom_pr_err("ch [%s] unsupported ioctl:%u\n",
			name, op->cmd_id);
		ret = -EINVAL;
	}
	spcom_pr_dbg("name=%s, retval=%d\n", name, op->retval);