diff options
author | Manasi Navare <manasi.d.navare@intel.com> | 2018-10-02 14:50:55 -0700 |
---|---|---|
committer | Manasi Navare <manasi.d.navare@intel.com> | 2018-10-03 13:05:12 -0700 |
commit | 4db4b85014df7fa3c91a2e9330ca446ac9b3b882 (patch) | |
tree | 0f1944b4d7076d0486bcc6232abe3cfe8f5b8a3c | |
parent | d717c6df3040abe6456b790e6901e1b98f83c201 (diff) |
drm: Fix kernel doc for DRM_MODE_PROP_IMMUTABLE
This patch explains the DRM_MODE_PROP_IMMUTABLE flag a bit better
by telling which function to call if kernel wants to update
drm object's immutable properties.
Suggested-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Manasi Navare <manasi.d.navare@intel.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20181002215055.8652-1-manasi.d.navare@intel.com
-rw-r--r-- | include/drm/drm_property.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/drm/drm_property.h b/include/drm/drm_property.h index 5b9efff35d6d..4a0a80d658c7 100644 --- a/include/drm/drm_property.h +++ b/include/drm/drm_property.h @@ -153,7 +153,8 @@ struct drm_property { * userspace. The kernel is allowed to update the value of these * properties. This is generally used to expose probe state to * userspace, e.g. the EDID, or the connector path property on DP - * MST sinks. + * MST sinks. Kernel can update the value of an immutable property + * by calling drm_object_property_set_value(). */ uint32_t flags; |