Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 209f5527 authored by Chuck Ebbert's avatar Chuck Ebbert Committed by Daniel Vetter
Browse files

drm/crtc: Fix two typos



Fix:

  ioclt -> ioctl in comment
  wrong variable name in debug message

Signed-off-by: default avatarChuck Ebbert <cebbert.lkml@gmail.com>
Reviewed-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
[danvet: Frob manually generated patch to make it apply.]
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 32197aab
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2943,7 +2943,7 @@ EXPORT_SYMBOL(drm_mode_legacy_fb_format);
 * @file_priv: drm file for the ioctl call
 *
 * Add a new FB to the specified CRTC, given a user request. This is the
 * original addfb ioclt which only supported RGB formats.
 * original addfb ioctl which only supported RGB formats.
 *
 * Called by the user via ioctl.
 *
@@ -3080,7 +3080,7 @@ static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
	num_planes = drm_format_num_planes(r->pixel_format);

	if (r->width == 0 || r->width % hsub) {
		DRM_DEBUG_KMS("bad framebuffer width %u\n", r->height);
		DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
		return -EINVAL;
	}