mirror of https://gitee.com/openkylin/linux.git
drm/omap: Replace drm_gem_object_unreference_unlocked with put function
This patch unifies the naming of DRM functions for reference counting of struct drm_gem_object. The resulting code is more aligned with the rest of the Linux kernel interfaces. Signed-off-by: Thomas Zimmermann <tdz@users.sourceforge.net> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
3ce11806c0
commit
e64d022934
|
@ -439,7 +439,7 @@ static int ioctl_gem_info(struct drm_device *dev, void *data,
|
|||
args->size = omap_gem_mmap_size(obj);
|
||||
args->offset = omap_gem_mmap_offset(obj);
|
||||
|
||||
drm_gem_object_unreference_unlocked(obj);
|
||||
drm_gem_object_put_unlocked(obj);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -319,7 +319,7 @@ struct drm_framebuffer *omap_framebuffer_create(struct drm_device *dev,
|
|||
|
||||
error:
|
||||
while (--i >= 0)
|
||||
drm_gem_object_unreference_unlocked(bos[i]);
|
||||
drm_gem_object_put_unlocked(bos[i]);
|
||||
|
||||
return fb;
|
||||
}
|
||||
|
|
|
@ -150,7 +150,7 @@ static int omap_fbdev_create(struct drm_fb_helper *helper,
|
|||
/* note: if fb creation failed, we can't rely on fb destroy
|
||||
* to unref the bo:
|
||||
*/
|
||||
drm_gem_object_unreference_unlocked(fbdev->bo);
|
||||
drm_gem_object_put_unlocked(fbdev->bo);
|
||||
ret = PTR_ERR(fb);
|
||||
goto fail;
|
||||
}
|
||||
|
|
|
@ -638,7 +638,7 @@ int omap_gem_dumb_map_offset(struct drm_file *file, struct drm_device *dev,
|
|||
|
||||
*offset = omap_gem_mmap_offset(obj);
|
||||
|
||||
drm_gem_object_unreference_unlocked(obj);
|
||||
drm_gem_object_put_unlocked(obj);
|
||||
|
||||
fail:
|
||||
return ret;
|
||||
|
@ -1312,7 +1312,7 @@ int omap_gem_new_handle(struct drm_device *dev, struct drm_file *file,
|
|||
}
|
||||
|
||||
/* drop reference from allocate - handle holds it now */
|
||||
drm_gem_object_unreference_unlocked(obj);
|
||||
drm_gem_object_put_unlocked(obj);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue