diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2012-05-17 07:27:20 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-05-22 05:34:33 -0400 |
commit | 3b02ab8893d45f17ae104588e337188127068a92 (patch) | |
tree | 27a83d4543233d151e8063ef75916897bca364a1 /include/drm/drm_crtc.h | |
parent | 4a1b0714275796fdbc35427cf361eb4123e5e9f6 (diff) |
drm: Miscellaneous typo fixes and documentation updates
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm/drm_crtc.h')
-rw-r--r-- | include/drm/drm_crtc.h | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index d59bb7d93657..3ecee192db06 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h | |||
@@ -294,20 +294,16 @@ struct drm_plane; | |||
294 | 294 | ||
295 | /** | 295 | /** |
296 | * drm_crtc_funcs - control CRTCs for a given device | 296 | * drm_crtc_funcs - control CRTCs for a given device |
297 | * @reset: reset CRTC after state has been invalidate (e.g. resume) | ||
298 | * @dpms: control display power levels | ||
299 | * @save: save CRTC state | 297 | * @save: save CRTC state |
300 | * @resore: restore CRTC state | 298 | * @restore: restore CRTC state |
301 | * @lock: lock the CRTC | 299 | * @reset: reset CRTC after state has been invalidate (e.g. resume) |
302 | * @unlock: unlock the CRTC | 300 | * @cursor_set: setup the cursor |
303 | * @shadow_allocate: allocate shadow pixmap | 301 | * @cursor_move: move the cursor |
304 | * @shadow_create: create shadow pixmap for rotation support | ||
305 | * @shadow_destroy: free shadow pixmap | ||
306 | * @mode_fixup: fixup proposed mode | ||
307 | * @mode_set: set the desired mode on the CRTC | ||
308 | * @gamma_set: specify color ramp for CRTC | 302 | * @gamma_set: specify color ramp for CRTC |
309 | * @destroy: deinit and free object | 303 | * @destroy: deinit and free object |
310 | * @set_property: called when a property is changed | 304 | * @set_property: called when a property is changed |
305 | * @set_config: apply a new CRTC configuration | ||
306 | * @page_flip: initiate a page flip | ||
311 | * | 307 | * |
312 | * The drm_crtc_funcs structure is the central CRTC management structure | 308 | * The drm_crtc_funcs structure is the central CRTC management structure |
313 | * in the DRM. Each CRTC controls one or more connectors (note that the name | 309 | * in the DRM. Each CRTC controls one or more connectors (note that the name |
@@ -420,11 +416,8 @@ struct drm_crtc { | |||
420 | * @save: save connector state | 416 | * @save: save connector state |
421 | * @restore: restore connector state | 417 | * @restore: restore connector state |
422 | * @reset: reset connector after state has been invalidate (e.g. resume) | 418 | * @reset: reset connector after state has been invalidate (e.g. resume) |
423 | * @mode_valid: is this mode valid on the given connector? | ||
424 | * @mode_fixup: try to fixup proposed mode for this connector | ||
425 | * @mode_set: set this mode | ||
426 | * @detect: is this connector active? | 419 | * @detect: is this connector active? |
427 | * @get_modes: get mode list for this connector | 420 | * @fill_modes: fill mode list for this connector |
428 | * @set_property: property for this connector may need update | 421 | * @set_property: property for this connector may need update |
429 | * @destroy: make object go away | 422 | * @destroy: make object go away |
430 | * @force: notify the driver the connector is forced on | 423 | * @force: notify the driver the connector is forced on |