aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/drm/drm_crtc.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h
index 4f2feee4f479..9014599791a5 100644
--- a/include/drm/drm_crtc.h
+++ b/include/drm/drm_crtc.h
@@ -344,10 +344,21 @@ struct drm_crtc_funcs {
344 344
345/** 345/**
346 * drm_crtc - central CRTC control structure 346 * drm_crtc - central CRTC control structure
347 * @dev: parent DRM device
348 * @head: list management
349 * @base: base KMS object for ID tracking etc.
347 * @enabled: is this CRTC enabled? 350 * @enabled: is this CRTC enabled?
351 * @mode: current mode timings
352 * @hwmode: mode timings as programmed to hw regs
348 * @x: x position on screen 353 * @x: x position on screen
349 * @y: y position on screen 354 * @y: y position on screen
350 * @funcs: CRTC control functions 355 * @funcs: CRTC control functions
356 * @gamma_size: size of gamma ramp
357 * @gamma_store: gamma ramp values
358 * @framedur_ns: precise frame timing
359 * @framedur_ns: precise line timing
360 * @pixeldur_ns: precise pixel timing
361 * @helper_private: mid-layer private data
351 * 362 *
352 * Each CRTC may have one or more connectors associated with it. This structure 363 * Each CRTC may have one or more connectors associated with it. This structure
353 * allows the CRTC to be controlled. 364 * allows the CRTC to be controlled.