diff mbox

drm: Fix drm_crtc_vblank_get() documentation

Message ID 1423842811-23881-1-git-send-email-damien.lespiau@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Lespiau, Damien Feb. 13, 2015, 3:53 p.m. UTC
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>
---
 drivers/gpu/drm/drm_irq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Daniel Vetter Feb. 13, 2015, 8:08 p.m. UTC | #1
On Fri, Feb 13, 2015 at 03:53:31PM +0000, Damien Lespiau wrote:
> 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>

Applied to drm-misc, thanks for the patch.
-Daniel
diff mbox

Patch

diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c
index 10574a0..c9f5453 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.