mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-10 14:26:44 +07:00
driver-core: pr_err() strings should end with newlines
pr_err() messages should terminated with a new-line to avoid other messages being concatenated onto the end. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
33d930e59a
commit
f4f89f23e6
@ -64,7 +64,7 @@ static int __init test_async_probe_init(void)
|
|||||||
NULL, 0);
|
NULL, 0);
|
||||||
if (IS_ERR(async_dev_1)) {
|
if (IS_ERR(async_dev_1)) {
|
||||||
error = PTR_ERR(async_dev_1);
|
error = PTR_ERR(async_dev_1);
|
||||||
pr_err("failed to create async_dev_1: %d", error);
|
pr_err("failed to create async_dev_1: %d\n", error);
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -91,7 +91,7 @@ static int __init test_async_probe_init(void)
|
|||||||
NULL, 0);
|
NULL, 0);
|
||||||
if (IS_ERR(async_dev_2)) {
|
if (IS_ERR(async_dev_2)) {
|
||||||
error = PTR_ERR(async_dev_2);
|
error = PTR_ERR(async_dev_2);
|
||||||
pr_err("failed to create async_dev_2: %d", error);
|
pr_err("failed to create async_dev_2: %d\n", error);
|
||||||
goto err_unregister_async_driver;
|
goto err_unregister_async_driver;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,7 +118,7 @@ static int __init test_async_probe_init(void)
|
|||||||
NULL, 0);
|
NULL, 0);
|
||||||
if (IS_ERR(sync_dev_1)) {
|
if (IS_ERR(sync_dev_1)) {
|
||||||
error = PTR_ERR(sync_dev_1);
|
error = PTR_ERR(sync_dev_1);
|
||||||
pr_err("failed to create sync_dev_1: %d", error);
|
pr_err("failed to create sync_dev_1: %d\n", error);
|
||||||
goto err_unregister_sync_driver;
|
goto err_unregister_sync_driver;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user