Commit a727fe8f authored by Lyude Paul's avatar Lyude Paul

drm/dp_mst: Mention max_payloads in proposed_vcpis/payloads docs

Mention that the size of these two structs is determined by
max_payloads. Suggested by Ville Syrjälä.
Signed-off-by: default avatarLyude Paul <lyude@redhat.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200122194321.14953-2-lyude@redhat.com
parent 8732fe46
...@@ -624,11 +624,13 @@ struct drm_dp_mst_topology_mgr { ...@@ -624,11 +624,13 @@ struct drm_dp_mst_topology_mgr {
struct mutex payload_lock; struct mutex payload_lock;
/** /**
* @proposed_vcpis: Array of pointers for the new VCPI allocation. The * @proposed_vcpis: Array of pointers for the new VCPI allocation. The
* VCPI structure itself is &drm_dp_mst_port.vcpi. * VCPI structure itself is &drm_dp_mst_port.vcpi, and the size of
* this array is determined by @max_payloads.
*/ */
struct drm_dp_vcpi **proposed_vcpis; struct drm_dp_vcpi **proposed_vcpis;
/** /**
* @payloads: Array of payloads. * @payloads: Array of payloads. The size of this array is determined
* by @max_payloads.
*/ */
struct drm_dp_payload *payloads; struct drm_dp_payload *payloads;
/** /**
......
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