Commit 9e37ee79 authored by Daniel Vetter's avatar Daniel Vetter

drm/vblank: Remove old-style comments

Somehow I forgot a few when typing all the shiny new kerneldoc. Drop
them.
Reviewed-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20181005073636.27291-1-daniel.vetter@ffwll.ch
parent 6b7e2d5c
...@@ -95,7 +95,7 @@ struct drm_vblank_crtc { ...@@ -95,7 +95,7 @@ struct drm_vblank_crtc {
/** /**
* @queue: Wait queue for vblank waiters. * @queue: Wait queue for vblank waiters.
*/ */
wait_queue_head_t queue; /**< VBLANK wait queue */ wait_queue_head_t queue;
/** /**
* @disable_timer: Disable timer for the delayed vblank disabling * @disable_timer: Disable timer for the delayed vblank disabling
* hysteresis logic. Vblank disabling is controlled through the * hysteresis logic. Vblank disabling is controlled through the
...@@ -107,7 +107,7 @@ struct drm_vblank_crtc { ...@@ -107,7 +107,7 @@ struct drm_vblank_crtc {
/** /**
* @seqlock: Protect vblank count and time. * @seqlock: Protect vblank count and time.
*/ */
seqlock_t seqlock; /* protects vblank count and time */ seqlock_t seqlock;
/** /**
* @count: Current software vblank counter. * @count: Current software vblank counter.
...@@ -123,7 +123,7 @@ struct drm_vblank_crtc { ...@@ -123,7 +123,7 @@ struct drm_vblank_crtc {
* this refcount reaches 0 can the hardware interrupt be disabled using * this refcount reaches 0 can the hardware interrupt be disabled using
* @disable_timer. * @disable_timer.
*/ */
atomic_t refcount; /* number of users of vblank interruptsper crtc */ atomic_t refcount;
/** /**
* @last: Protected by &drm_device.vbl_lock, used for wraparound handling. * @last: Protected by &drm_device.vbl_lock, used for wraparound handling.
*/ */
...@@ -136,7 +136,7 @@ struct drm_vblank_crtc { ...@@ -136,7 +136,7 @@ struct drm_vblank_crtc {
* call drm_crtc_vblank_off() and drm_crtc_vblank_on(), which explicitly * call drm_crtc_vblank_off() and drm_crtc_vblank_on(), which explicitly
* save and restore the vblank count. * save and restore the vblank count.
*/ */
unsigned int inmodeset; /* Display driver is setting mode */ unsigned int inmodeset;
/** /**
* @pipe: drm_crtc_index() of the &drm_crtc corresponding to this * @pipe: drm_crtc_index() of the &drm_crtc corresponding to this
* structure. * structure.
......
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