Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

haoyu.lu and committed by
Alexandre Belloni
acfcdff9 7f53c556

+2 -2
+1 -1
drivers/i3c/master.c
··· 2423 2423 * DEFSLVS command. 2424 2424 */ 2425 2425 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"); 2427 2427 return -EOPNOTSUPP; 2428 2428 } 2429 2429
+1 -1
drivers/i3c/master/svc-i3c-master.c
··· 1268 1268 /* Configure IBI auto-rules */ 1269 1269 ret = svc_i3c_update_ibirules(master); 1270 1270 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"); 1272 1272 1273 1273 rpm_out: 1274 1274 pm_runtime_put_autosuspend(master->dev);