]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
crash: fix spelling mistake "crahskernel" -> "crashkernel"
authorColin Ian King <colin.i.king@gmail.com>
Fri, 18 Apr 2025 12:03:31 +0000 (13:03 +0100)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 12 May 2025 00:54:10 +0000 (17:54 -0700)
There is a spelling mistake in a pr_warn message. Fix it.

Link: https://lkml.kernel.org/r/20250418120331.535086-1-colin.i.king@gmail.com
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Baoquan He <bhe@redhat.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
kernel/crash_reserve.c

index aff7c0fdbefa8c1d6c1d1f346c455cb2b6f566db..acb6bf42e30d3dad4bab8a7e2c69977696683db8 100644 (file)
@@ -131,7 +131,7 @@ static int __init parse_crashkernel_mem(char *cmdline,
                        cur++;
                        *crash_base = memparse(cur, &tmp);
                        if (cur == tmp) {
-                               pr_warn("crahskernel: Memory value expected after '@'\n");
+                               pr_warn("crashkernel: Memory value expected after '@'\n");
                                return -EINVAL;
                        }
                }