From: Alex Deucher Date: Fri, 9 Nov 2012 17:26:32 +0000 (+0000) Subject: drm: fix documentation for drm_crtc_set_mode() X-Git-Tag: v3.2.36~101 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=56bd27c70e51a909f768f6bb62e93ad78e5c87e2;p=thirdparty%2Fkernel%2Fstable.git drm: fix documentation for drm_crtc_set_mode() commit 4c9287c6009b37754c42e0ba73a4cc79de92d8f8 upstream. x and y parameters are offsets, not width/height Signed-off-by: Alex Deucher Signed-off-by: Dave Airlie Signed-off-by: Ben Hutchings --- diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c index d2619d72ceceb..11788f72e2b0a 100644 --- a/drivers/gpu/drm/drm_crtc_helper.c +++ b/drivers/gpu/drm/drm_crtc_helper.c @@ -321,8 +321,8 @@ drm_crtc_prepare_encoders(struct drm_device *dev) * drm_crtc_set_mode - set a mode * @crtc: CRTC to program * @mode: mode to use - * @x: width of mode - * @y: height of mode + * @x: horizontal offset into the surface + * @y: vertical offset into the surface * * LOCKING: * Caller must hold mode config lock.