mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 16:07:39 +00:00
iio: imu: adis: Add a missing '\n' in a log message
Message logged by 'dev_xxx()' or 'pr_xxx()' should end with a '\n'.
Fixes: 1fd4567026
("iio: imu: adis: add support product ID check in adis_initial_startup")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
903b6a07d9
commit
97f1755ee2
1 changed files with 1 additions and 1 deletions
|
@ -419,7 +419,7 @@ int __adis_initial_startup(struct adis *adis)
|
|||
|
||||
if (prod_id != adis->data->prod_id)
|
||||
dev_warn(&adis->spi->dev,
|
||||
"Device ID(%u) and product ID(%u) do not match.",
|
||||
"Device ID(%u) and product ID(%u) do not match.\n",
|
||||
adis->data->prod_id, prod_id);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue