Skip to content

Commit 97f1755

Browse files
tititiou36jic23
authored andcommitted
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: 1fd4567 ("iio: imu: adis: add support product ID check in adis_initial_startup") Signed-off-by: Christophe JAILLET <[email protected]> Signed-off-by: Jonathan Cameron <[email protected]>
1 parent 903b6a0 commit 97f1755

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iio/imu/adis.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ int __adis_initial_startup(struct adis *adis)
419419

420420
if (prod_id != adis->data->prod_id)
421421
dev_warn(&adis->spi->dev,
422-
"Device ID(%u) and product ID(%u) do not match.",
422+
"Device ID(%u) and product ID(%u) do not match.\n",
423423
adis->data->prod_id, prod_id);
424424

425425
return 0;

0 commit comments

Comments
 (0)