diff options
author | Javier Martinez Canillas <[email protected]> | 2021-11-12 14:32:30 +0100 |
---|---|---|
committer | Javier Martinez Canillas <[email protected]> | 2021-11-27 13:52:30 +0100 |
commit | db08490fc4b6695ada6c21e40343307f08d9620e (patch) | |
tree | 7f8ea6fb3636dcb11286220d40a0681846ba8529 | |
parent | b22a15a5aca34c8f59b770f858b1c21d347175e0 (diff) |
drm: Make the nomodeset message less sensational
The message printed when nomodeset is present in the kernel command line
makes it look as if the parameter must never be used and it's a bad idea.
But there are valid reasons to use this parameter and the message should
not imply otherwise. Change the text to be more accurate and restrained.
Suggested-by: Thomas Zimmermann <[email protected]>
Signed-off-by: Javier Martinez Canillas <[email protected]>
Acked-by: Thomas Zimmermann <[email protected]>
Acked-by: Jani Nikula <[email protected]>
Acked-by: Pekka Paalanen <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | gpu/drm/drm_nomodeset.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gpu/drm/drm_nomodeset.c b/gpu/drm/drm_nomodeset.c index 287edfb18b5d..f3978d5bd3a1 100644 --- a/gpu/drm/drm_nomodeset.c +++ b/gpu/drm/drm_nomodeset.c @@ -15,9 +15,7 @@ static int __init disable_modeset(char *str) { drm_nomodeset = true; - pr_warn("You have booted with nomodeset. This means your GPU drivers are DISABLED\n"); - pr_warn("Any video related functionality will be severely degraded, and you may not even be able to suspend the system properly\n"); - pr_warn("Unless you actually understand what nomodeset does, you should reboot without enabling it\n"); + pr_warn("Booted with the nomodeset parameter. Only the system framebuffer will be available\n"); return 1; } |