diff options
author | Christophe JAILLET <[email protected]> | 2020-04-11 18:07:50 +0200 |
---|---|---|
committer | Bjorn Andersson <[email protected]> | 2020-04-22 22:20:40 -0700 |
commit | 2fb75ceaf71a4a198fc67b984aa95527c993fa1a (patch) | |
tree | 57fd225b941169c438a52b5c144632a35f2354fc | |
parent | 33467ac3c8dc80575e1b158e78d0c30ab33c1b08 (diff) |
remoteproc: Add missing '\n' in log messages
Message logged by 'dev_xxx()' or 'pr_xxx()' should end with a '\n'.
Fixes: 791c13b709dd ("remoteproc: Fix NULL pointer dereference in rproc_virtio_notify")
Signed-off-by: Christophe JAILLET <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Bjorn Andersson <[email protected]>
-rw-r--r-- | drivers/remoteproc/remoteproc_virtio.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/remoteproc/remoteproc_virtio.c b/drivers/remoteproc/remoteproc_virtio.c index e61d738d9b47..15ec5fc65257 100644 --- a/drivers/remoteproc/remoteproc_virtio.c +++ b/drivers/remoteproc/remoteproc_virtio.c @@ -337,8 +337,7 @@ int rproc_add_virtio_dev(struct rproc_vdev *rvdev, int id) if (rproc->ops->kick == NULL) { ret = -EINVAL; - dev_err(dev, ".kick method not defined for %s", - rproc->name); + dev_err(dev, ".kick method not defined for %s\n", rproc->name); goto out; } |