diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2015-02-13 18:53:31 +0300 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2015-02-23 13:19:34 +0300 |
commit | 30b79f062ea0ab5df3afdfeb503794a5b4beb8f1 (patch) | |
tree | 8c745eb6848162b31232dcf6d1713dd1c9b7f748 | |
parent | 96abd10ecc2e9ab5c8060697ce721683f387c64e (diff) | |
download | linux-30b79f062ea0ab5df3afdfeb503794a5b4beb8f1.tar.xz |
drm: Fix drm_crtc_vblank_get() documentation
drm_crtc_vblank_get() is the new drm_vblank_get(), not the new
drm_vblank_off().
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r-- | drivers/gpu/drm/drm_irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c index 10574a0c3a55..c9f5453f20e7 100644 --- a/drivers/gpu/drm/drm_irq.c +++ b/drivers/gpu/drm/drm_irq.c @@ -1052,7 +1052,7 @@ EXPORT_SYMBOL(drm_vblank_get); * Acquire a reference count on vblank events to avoid having them disabled * while in use. * - * This is the native kms version of drm_vblank_off(). + * This is the native kms version of drm_vblank_get(). * * Returns: * Zero on success, nonzero on failure. |