From: Jocelyn Falempe Date: Wed, 7 Aug 2024 13:36:10 +0000 (+0200) Subject: drm/panic: Remove space before "!" in panic message X-Git-Tag: v6.12-rc1~126^2~21^2~49 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cae39e60abb10ba1e8cc095b7d5567edc9005f03;p=thirdparty%2Fkernel%2Flinux.git drm/panic: Remove space before "!" in panic message There is no space between the last word, and the punctuation mark in English. Suggested-by: Diego Viola Signed-off-by: Jocelyn Falempe Reviewed-by: Daniel Vetter Reviewed-by: Thomas Zimmermann Link: https://patchwork.freedesktop.org/patch/msgid/20240807134902.458669-2-jfalempe@redhat.com --- diff --git a/drivers/gpu/drm/drm_panic.c b/drivers/gpu/drm/drm_panic.c index 072752b658f0d..5e873469856f3 100644 --- a/drivers/gpu/drm/drm_panic.c +++ b/drivers/gpu/drm/drm_panic.c @@ -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."), };