aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_crtc.c
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-07-30 08:23:44 -0400
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-08-14 15:24:17 -0400
commit295ee85316aedfe1878306d71b5e9c7d4498fb1b (patch)
treea25f89cbb94109ede3ea8ba5fdb6b3dbd493f899 /drivers/gpu/drm/drm_crtc.c
parente8450f51a4b39cfe0878b4aee339820b2bfff240 (diff)
drm: Docbook fixes
Bunch of small leftovers spotted by looking at the make htmldocs output. I've left out dp mst, there's too much amiss there. v2: Also add the missing parameter docbook in the dp mst code - Dave Airlie correctly pointed out that we don't actually want kerneldoc for the missing structure members in header files. Cc: Dave Airlie <airlied@gmail.com> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/drm_crtc.c')
-rw-r--r--drivers/gpu/drm/drm_crtc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c
index 285e62a134b2..f09b75212081 100644
--- a/drivers/gpu/drm/drm_crtc.c
+++ b/drivers/gpu/drm/drm_crtc.c
@@ -3512,9 +3512,10 @@ EXPORT_SYMBOL(drm_property_create_enum);
3512 * @flags: flags specifying the property type 3512 * @flags: flags specifying the property type
3513 * @name: name of the property 3513 * @name: name of the property
3514 * @props: enumeration lists with property bitflags 3514 * @props: enumeration lists with property bitflags
3515 * @num_values: number of pre-defined values 3515 * @num_props: size of the @props array
3516 * @supported_bits: bitmask of all supported enumeration values
3516 * 3517 *
3517 * This creates a new generic drm property which can then be attached to a drm 3518 * This creates a new bitmask drm property which can then be attached to a drm
3518 * object with drm_object_attach_property. The returned property object must be 3519 * object with drm_object_attach_property. The returned property object must be
3519 * freed with drm_property_destroy. 3520 * freed with drm_property_destroy.
3520 * 3521 *