Commit 6a8a66ed authored by Daniel Vetter's avatar Daniel Vetter

drm/doc: Fix links in drm_property.c

One of the functions was missing () to make the autolinks work,
unfortunately copy-pasted a few times all over.

Cc: Manasi Navare <manasi.d.navare@intel.com>
Reviewed-by: default avatarSean Paul <seanpaul@chromium.org>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20161123192327.28819-1-daniel.vetter@ffwll.ch
parent b7a2a230
...@@ -65,9 +65,9 @@ static bool drm_property_type_valid(struct drm_property *property) ...@@ -65,9 +65,9 @@ static bool drm_property_type_valid(struct drm_property *property)
* @num_values: number of pre-defined values * @num_values: number of pre-defined values
* *
* This creates a new generic drm property which can then be attached to a drm * This creates a new generic drm property which can then be attached to a drm
* object with drm_object_attach_property. The returned property object must be * object with drm_object_attach_property(). The returned property object must
* freed with drm_property_destroy(), which is done automatically when calling * be freed with drm_property_destroy(), which is done automatically when
* drm_mode_config_cleanup(). * calling drm_mode_config_cleanup().
* *
* Returns: * Returns:
* A pointer to the newly created property on success, NULL on failure. * A pointer to the newly created property on success, NULL on failure.
...@@ -125,9 +125,9 @@ EXPORT_SYMBOL(drm_property_create); ...@@ -125,9 +125,9 @@ EXPORT_SYMBOL(drm_property_create);
* @num_values: number of pre-defined values * @num_values: number of pre-defined values
* *
* This creates a new generic drm property which can then be attached to a drm * This creates a new generic drm property which can then be attached to a drm
* object with drm_object_attach_property. The returned property object must be * object with drm_object_attach_property(). The returned property object must
* freed with drm_property_destroy(), which is done automatically when calling * be freed with drm_property_destroy(), which is done automatically when
* drm_mode_config_cleanup(). * calling drm_mode_config_cleanup().
* *
* Userspace is only allowed to set one of the predefined values for enumeration * Userspace is only allowed to set one of the predefined values for enumeration
* properties. * properties.
...@@ -173,9 +173,9 @@ EXPORT_SYMBOL(drm_property_create_enum); ...@@ -173,9 +173,9 @@ EXPORT_SYMBOL(drm_property_create_enum);
* @supported_bits: bitmask of all supported enumeration values * @supported_bits: bitmask of all supported enumeration values
* *
* This creates a new bitmask drm property which can then be attached to a drm * This creates a new bitmask drm property which can then be attached to a drm
* object with drm_object_attach_property. The returned property object must be * object with drm_object_attach_property(). The returned property object must
* freed with drm_property_destroy(), which is done automatically when calling * be freed with drm_property_destroy(), which is done automatically when
* drm_mode_config_cleanup(). * calling drm_mode_config_cleanup().
* *
* Compared to plain enumeration properties userspace is allowed to set any * Compared to plain enumeration properties userspace is allowed to set any
* or'ed together combination of the predefined property bitflag values * or'ed together combination of the predefined property bitflag values
...@@ -245,9 +245,9 @@ static struct drm_property *property_create_range(struct drm_device *dev, ...@@ -245,9 +245,9 @@ static struct drm_property *property_create_range(struct drm_device *dev,
* @max: maximum value of the property * @max: maximum value of the property
* *
* This creates a new generic drm property which can then be attached to a drm * This creates a new generic drm property which can then be attached to a drm
* object with drm_object_attach_property. The returned property object must be * object with drm_object_attach_property(). The returned property object must
* freed with drm_property_destroy(), which is done automatically when calling * be freed with drm_property_destroy(), which is done automatically when
* drm_mode_config_cleanup(). * calling drm_mode_config_cleanup().
* *
* Userspace is allowed to set any unsigned integer value in the (min, max) * Userspace is allowed to set any unsigned integer value in the (min, max)
* range inclusive. * range inclusive.
...@@ -273,9 +273,9 @@ EXPORT_SYMBOL(drm_property_create_range); ...@@ -273,9 +273,9 @@ EXPORT_SYMBOL(drm_property_create_range);
* @max: maximum value of the property * @max: maximum value of the property
* *
* This creates a new generic drm property which can then be attached to a drm * This creates a new generic drm property which can then be attached to a drm
* object with drm_object_attach_property. The returned property object must be * object with drm_object_attach_property(). The returned property object must
* freed with drm_property_destroy(), which is done automatically when calling * be freed with drm_property_destroy(), which is done automatically when
* drm_mode_config_cleanup(). * calling drm_mode_config_cleanup().
* *
* Userspace is allowed to set any signed integer value in the (min, max) * Userspace is allowed to set any signed integer value in the (min, max)
* range inclusive. * range inclusive.
...@@ -300,9 +300,9 @@ EXPORT_SYMBOL(drm_property_create_signed_range); ...@@ -300,9 +300,9 @@ EXPORT_SYMBOL(drm_property_create_signed_range);
* @type: object type from DRM_MODE_OBJECT_* defines * @type: object type from DRM_MODE_OBJECT_* defines
* *
* This creates a new generic drm property which can then be attached to a drm * This creates a new generic drm property which can then be attached to a drm
* object with drm_object_attach_property. The returned property object must be * object with drm_object_attach_property(). The returned property object must
* freed with drm_property_destroy(), which is done automatically when calling * be freed with drm_property_destroy(), which is done automatically when
* drm_mode_config_cleanup(). * calling drm_mode_config_cleanup().
* *
* Userspace is only allowed to set this to any property value of the given * Userspace is only allowed to set this to any property value of the given
* @type. Only useful for atomic properties, which is enforced. * @type. Only useful for atomic properties, which is enforced.
...@@ -338,9 +338,9 @@ EXPORT_SYMBOL(drm_property_create_object); ...@@ -338,9 +338,9 @@ EXPORT_SYMBOL(drm_property_create_object);
* @name: name of the property * @name: name of the property
* *
* This creates a new generic drm property which can then be attached to a drm * This creates a new generic drm property which can then be attached to a drm
* object with drm_object_attach_property. The returned property object must be * object with drm_object_attach_property(). The returned property object must
* freed with drm_property_destroy(), which is done automatically when calling * be freed with drm_property_destroy(), which is done automatically when
* drm_mode_config_cleanup(). * calling drm_mode_config_cleanup().
* *
* This is implemented as a ranged property with only {0, 1} as valid values. * This is implemented as a ranged property with only {0, 1} as valid values.
* *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment