]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
drm/panic: Remove space before "!" in panic message
authorJocelyn Falempe <jfalempe@redhat.com>
Wed, 7 Aug 2024 13:36:10 +0000 (15:36 +0200)
committerJocelyn Falempe <jfalempe@redhat.com>
Mon, 12 Aug 2024 08:14:09 +0000 (10:14 +0200)
There is no space between the last word, and the punctuation mark in
English.

Suggested-by: Diego Viola <diego.viola@gmail.com>
Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20240807134902.458669-2-jfalempe@redhat.com
drivers/gpu/drm/drm_panic.c

index 072752b658f0d049d6d72f023bd7de168469e3a4..5e873469856f345f4d778a27430f3f1125cea0fb 100644 (file)
@@ -78,7 +78,7 @@ struct drm_panic_line {
 #define PANIC_LINE(s) {.len = sizeof(s) - 1, .txt = s}
 
 static struct drm_panic_line panic_msg[] = {
-       PANIC_LINE("KERNEL PANIC !"),
+       PANIC_LINE("KERNEL PANIC!"),
        PANIC_LINE(""),
        PANIC_LINE("Please reboot your computer."),
 };