Commit 0fa5c1bd authored by Thierry Reding's avatar Thierry Reding

drm/tegra: Add missing kerneldoc for struct drm_dp_link

The drm_dp_link structure tracks capabilities on the DP link. Add some
kerneldoc to explain what each of its fields means.
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent fc4ebe52
......@@ -11,6 +11,13 @@ struct drm_dp_aux;
#define DP_LINK_CAP_ENHANCED_FRAMING (1 << 0)
/**
* struct drm_dp_link - DP link capabilities
* @revision: DP specification revision supported on the link
* @rate: maximum clock rate supported on the link
* @num_lanes: maximum number of lanes supported on the link
* @capabilities: bitmask of capabilities supported on the link
*/
struct drm_dp_link {
unsigned char revision;
unsigned int rate;
......
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