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:
parent
04301c31fd
commit
549038c56f
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue