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: Ubuntu-5.0.0-8.9~14649^2~186 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=4c9287c6009b37754c42e0ba73a4cc79de92d8f8;p=mirror_ubuntu-disco-kernel.git drm: fix documentation for drm_crtc_set_mode() x and y parameters are offsets, not width/height Signed-off-by: Alex Deucher Cc: stable@vger.kernel.org Signed-off-by: Dave Airlie --- diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c index 710516815de7..b04cf5332599 100644 --- a/drivers/gpu/drm/drm_crtc_helper.c +++ b/drivers/gpu/drm/drm_crtc_helper.c @@ -346,8 +346,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.