aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm/drm_crtc.h
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2011-11-07 15:03:19 -0500
committerDave Airlie <airlied@redhat.com>2011-12-06 05:23:32 -0500
commitef27351ae1ee83bdd5114523fef9eff405c25a35 (patch)
treef0cc629026ba9ee9c18138ec44060aa16b555ae2 /include/drm/drm_crtc.h
parent722525481a058829f0bae0ec3aab96370f9ab455 (diff)
drm: document drm_mode_set structure
This is a core mode setting structure that deserves a little verbiage. Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> Reviewed-by: Alex Deucher <alexdeucher@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm/drm_crtc.h')
-rw-r--r--include/drm/drm_crtc.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h
index 738323659f9c..f3bcff473f6e 100644
--- a/include/drm/drm_crtc.h
+++ b/include/drm/drm_crtc.h
@@ -646,7 +646,15 @@ struct drm_plane {
646}; 646};
647 647
648/** 648/**
649 * struct drm_mode_set 649 * drm_mode_set - new values for a CRTC config change
650 * @head: list management
651 * @fb: framebuffer to use for new config
652 * @crtc: CRTC whose configuration we're about to change
653 * @mode: mode timings to use
654 * @x: position of this CRTC relative to @fb
655 * @y: position of this CRTC relative to @fb
656 * @connectors: array of connectors to drive with this CRTC if possible
657 * @num_connectors: size of @connectors array
650 * 658 *
651 * Represents a single crtc the connectors that it drives with what mode 659 * Represents a single crtc the connectors that it drives with what mode
652 * and from which framebuffer it scans out from. 660 * and from which framebuffer it scans out from.