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: Amir Samuelov <amirs@codeaurora.org>
This commit is contained in:
Amir Samuelov 2020-03-17 12:24:07 +02:00 committed by Gerrit - the friendly Code Review server
parent 04301c31fd
commit 549038c56f

View file

@ -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);