Skip to content

Commit acfcdff

Browse files
haoyu.lualexandrebelloni
authored andcommitted
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>
1 parent 7f53c55 commit acfcdff

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/i3c/master.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2423,7 +2423,7 @@ of_i3c_master_add_i2c_boardinfo(struct i3c_master_controller *master,
24232423
* DEFSLVS command.
24242424
*/
24252425
if (boardinfo->base.flags & I2C_CLIENT_TEN) {
2426-
dev_err(dev, "I2C device with 10 bit address not supported.");
2426+
dev_err(dev, "I2C device with 10 bit address not supported.\n");
24272427
return -EOPNOTSUPP;
24282428
}
24292429

drivers/i3c/master/svc-i3c-master.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1268,7 +1268,7 @@ static int svc_i3c_master_do_daa(struct i3c_master_controller *m)
12681268
/* Configure IBI auto-rules */
12691269
ret = svc_i3c_update_ibirules(master);
12701270
if (ret)
1271-
dev_err(master->dev, "Cannot handle such a list of devices");
1271+
dev_err(master->dev, "Cannot handle such a list of devices\n");
12721272

12731273
rpm_out:
12741274
pm_runtime_put_autosuspend(master->dev);

0 commit comments

Comments
 (0)