diff options
| author | Javier Martinez Canillas <[email protected]> | 2021-11-03 13:28:05 +0100 |
|---|---|---|
| committer | Jani Nikula <[email protected]> | 2021-11-03 15:27:35 +0200 |
| commit | 565edeee70db754e2e337ccd941f2dc10d276691 (patch) | |
| tree | 16cbc0bb311aa4332e4f49a7cacf6b56376109e1 | |
| parent | 9755f055f5121c40c481c1d5dd02a1c3fb0e7953 (diff) | |
drm/i915: Fix comment about modeset parameters
The comment mentions that the KMS is enabled by default unless either the
i915.modeset module parameter or vga_text_mode_force boot option are used.
But the latter does not exist and instead the nomodeset option was meant.
Signed-off-by: Javier Martinez Canillas <[email protected]>
Signed-off-by: Jani Nikula <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
| -rw-r--r-- | drivers/gpu/drm/i915/i915_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/i915_module.c b/drivers/gpu/drm/i915/i915_module.c index ab2295dd4500..c7507266aa83 100644 --- a/drivers/gpu/drm/i915/i915_module.c +++ b/drivers/gpu/drm/i915/i915_module.c @@ -24,8 +24,8 @@ static int i915_check_nomodeset(void) /* * Enable KMS by default, unless explicitly overriden by - * either the i915.modeset prarameter or by the - * vga_text_mode_force boot option. + * either the i915.modeset parameter or by the + * nomodeset boot option. */ if (i915_modparams.modeset == 0) |