Message ID | 20240517204951.2019031-1-gomonovych@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | EDAC/ghes: Add missing newlines to log statements | expand |
diff --git a/drivers/edac/ghes_edac.c b/drivers/edac/ghes_edac.c index cf2b618c1ada..1eb0136c6fbd 100644 --- a/drivers/edac/ghes_edac.c +++ b/drivers/edac/ghes_edac.c @@ -547,7 +547,7 @@ static int __init ghes_edac_init(void) return -ENODEV; if (list_empty(ghes_devs)) { - pr_info("GHES probing device list is empty"); + pr_info("GHES probing device list is empty\n"); return -ENODEV; }
Ensure consistency in log output by adding missing newlines to two GHES log statements. Signed-off-by: Vasyl Gomonovych <gomonovych@gmail.com> --- drivers/edac/ghes_edac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)