diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-07-15 15:48:02 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-07-19 04:31:29 -0400 |
commit | 212ae8918ce69b4f6ec980b21f27eeadf15197d8 (patch) | |
tree | 206058b2d41c2f3d51dce4dd2fe8bfc3a3e66e90 | |
parent | 34a67dd7f33f3476bc9978c3d353703d3821f6c2 (diff) |
drm/doc: Fix missing kerneldoc for drm_dp_helper.c
Never added when the DP validation code was added.
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1468612088-9721-5-git-send-email-daniel.vetter@ffwll.ch
-rw-r--r-- | include/drm/drm_dp_helper.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/drm/drm_dp_helper.h b/include/drm/drm_dp_helper.h index 4d85cf2874af..72dee1213268 100644 --- a/include/drm/drm_dp_helper.h +++ b/include/drm/drm_dp_helper.h | |||
@@ -747,7 +747,14 @@ struct drm_dp_aux { | |||
747 | struct mutex hw_mutex; | 747 | struct mutex hw_mutex; |
748 | ssize_t (*transfer)(struct drm_dp_aux *aux, | 748 | ssize_t (*transfer)(struct drm_dp_aux *aux, |
749 | struct drm_dp_aux_msg *msg); | 749 | struct drm_dp_aux_msg *msg); |
750 | unsigned i2c_nack_count, i2c_defer_count; | 750 | /** |
751 | * @i2c_nack_count: Counts I2C NACKs, used for DP validation. | ||
752 | */ | ||
753 | unsigned i2c_nack_count; | ||
754 | /** | ||
755 | * @i2c_defer_count: Counts I2C DEFERs, used for DP validation. | ||
756 | */ | ||
757 | unsigned i2c_defer_count; | ||
751 | }; | 758 | }; |
752 | 759 | ||
753 | ssize_t drm_dp_dpcd_read(struct drm_dp_aux *aux, unsigned int offset, | 760 | ssize_t drm_dp_dpcd_read(struct drm_dp_aux *aux, unsigned int offset, |