mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
power: fan53555: Fix missing newline in error message
Avoid concatenation with following message. Signed-off-by: Michal Suchanek <msuchanek@suse.de> Reviewed-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
This commit is contained in:
parent
8edf7ac09f
commit
0b9186277a
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ static int pmic_fan53555_read(struct udevice *dev, uint reg,
|
|||
u8 *buff, int len)
|
||||
{
|
||||
if (dm_i2c_read(dev, reg, buff, len)) {
|
||||
pr_err("%s: read error for register: %#x!", dev->name, reg);
|
||||
pr_err("%s: read error for register: %#x!\n", dev->name, reg);
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue