mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-16 10:11:38 -04:00
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>
This commit is contained in:
committed by
Alexandre Belloni
parent
7f53c556c2
commit
acfcdff920
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user