Commit acfcdff9 authored by haoyu.lu's avatar haoyu.lu Committed by Alexandre Belloni
Browse files

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: default avatarhaoyu.lu <hechushiguitu666@gmail.com>
Reviewed-by: default avatarFrank Li <Frank.Li@nxp.com>
Reviewed-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Link: https://patch.msgid.link/20260317034015.638-1-hechushiguitu666@gmail.com


Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent 7f53c556
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}

+1 −1
Original line number Diff line number Diff line
@@ -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);