Commit c77591a8 authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Mauro Carvalho Chehab
Browse files

media: m88ds3103: Add missing '\n' in log messages



Message logged by 'dev_xxx()' or 'pr_xxx()' should end with a '\n'.

While at it, change the log level from 'err' to 'debug'.

Fixes: e6089fec ("media: m88ds3103: Add support for ds3103b demod")
Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent d27958df
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1898,7 +1898,7 @@ static int m88ds3103_probe(struct i2c_client *client,
		if (ret)
			goto err_kfree;
		dev->dt_addr = ((utmp & 0x80) == 0) ? 0x42 >> 1 : 0x40 >> 1;
		dev_err(&client->dev, "dt addr is 0x%02x", dev->dt_addr);
		dev_dbg(&client->dev, "dt addr is 0x%02x\n", dev->dt_addr);

		dev->dt_client = i2c_new_dummy_device(client->adapter,
						      dev->dt_addr);