diff options
author | archit taneja <archit@ti.com> | 2013-04-10 12:59:39 +0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-04-12 08:08:15 +0400 |
commit | 9131d3d87bf7c8cfc9bdc3d3d927ec3967f0e9a6 (patch) | |
tree | 2c6730a3ab917b4f923c86765a77412948374c9c /drivers/gpu/drm/drm_crtc.c | |
parent | c2ed8844246dd4c46208c5f6fa79fd3cfcc671ca (diff) | |
download | linux-9131d3d87bf7c8cfc9bdc3d3d927ec3967f0e9a6.tar.xz |
drm: cleanup: use drm_framebuffer_reference instead of a kref_get
drm_framebuffer_lookup() does a kref_get() for the framebuffer if it finds one
corresponding to the fb id passed to it. Use drm_framebuffer_reference() instead
for clarity since it's the function used in other places to take a reference.
Signed-off-by: Archit Taneja <archit@ti.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_crtc.c')
-rw-r--r-- | drivers/gpu/drm/drm_crtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index dd64a06dc5b4..a3b63cf31eeb 100644 --- a/drivers/gpu/drm/drm_crtc.c +++ b/drivers/gpu/drm/drm_crtc.c @@ -412,7 +412,7 @@ struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev, mutex_lock(&dev->mode_config.fb_lock); fb = __drm_framebuffer_lookup(dev, id); if (fb) - kref_get(&fb->refcount); + drm_framebuffer_reference(fb); mutex_unlock(&dev->mode_config.fb_lock); return fb; |