summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhaoyu.lu <hechushiguitu666@gmail.com>2026-03-17 06:40:15 +0300
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2026-04-12 17:32:12 +0300
commitacfcdff920dcab2b71536f04684e92c7933f7f40 (patch)
treeaa2cda806933c2284bd08fa46cfbe7acfed71734
parent7f53c556c207600a9cd26798687f2df1c1c1dce2 (diff)
downloadlinux-acfcdff920dcab2b71536f04684e92c7933f7f40.tar.xz
i3c: fix missing newline in dev_err messages
Add missing newline to dev_err messages in: - drivers/i3c/master.c - drivers/i3c/master/svc-i3c-master.c Signed-off-by: haoyu.lu <hechushiguitu666@gmail.com> Reviewed-by: Frank Li <Frank.Li@nxp.com> Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://patch.msgid.link/20260317034015.638-1-hechushiguitu666@gmail.com Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
-rw-r--r--drivers/i3c/master.c2
-rw-r--r--drivers/i3c/master/svc-i3c-master.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i3c/master.c b/drivers/i3c/master.c
index c32847bc4d0d..6dd3c0fd7823 100644
--- a/drivers/i3c/master.c
+++ b/drivers/i3c/master.c
@@ -2423,7 +2423,7 @@ of_i3c_master_add_i2c_boardinfo(struct i3c_master_controller *master,
* DEFSLVS command.
*/
if (boardinfo->base.flags & I2C_CLIENT_TEN) {
- dev_err(dev, "I2C device with 10 bit address not supported.");
+ dev_err(dev, "I2C device with 10 bit address not supported.\n");
return -EOPNOTSUPP;
}
diff --git a/drivers/i3c/master/svc-i3c-master.c b/drivers/i3c/master/svc-i3c-master.c
index 8fefe2927f26..e2d99a3ac07d 100644
--- a/drivers/i3c/master/svc-i3c-master.c
+++ b/drivers/i3c/master/svc-i3c-master.c
@@ -1268,7 +1268,7 @@ static int svc_i3c_master_do_daa(struct i3c_master_controller *m)
/* Configure IBI auto-rules */
ret = svc_i3c_update_ibirules(master);
if (ret)
- dev_err(master->dev, "Cannot handle such a list of devices");
+ dev_err(master->dev, "Cannot handle such a list of devices\n");
rpm_out:
pm_runtime_put_autosuspend(master->dev);