drm: introduce drm_dev_{get/put} functions
Reference counting functions in the kernel typically use get/put suffixes. For
maintaining coding style consistency, introduce drm_dev_{get/put} functions. All
callers of drm_dev_ref() API have been converted in this patch and hence it has
been dropped while the drm_dev_unref() API with non-trivial number of users
remains for compatibility.
The semantic patch scripts/coccinelle/api/drm-get-put.cocci has been updated
with the new helper for conversion of drm_dev_unref() to drm_dev_put()
Signed-off-by: Aishwarya Pant <aishpant@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/6babda56134035a98220d5d37a4fd4048df214ce.1506413698.git.aishpant@gmail.com
This commit is contained in:
committed by
Daniel Vetter
parent
f2a44dd023
commit
9a96f55034
@@ -155,7 +155,7 @@ struct drm_driver {
|
||||
* reverse order of the initialization. Similarly to the load
|
||||
* hook, this handler is deprecated and its usage should be
|
||||
* dropped in favor of an open-coded teardown function at the
|
||||
* driver layer. See drm_dev_unregister() and drm_dev_unref()
|
||||
* driver layer. See drm_dev_unregister() and drm_dev_put()
|
||||
* for the proper way to remove a &struct drm_device.
|
||||
*
|
||||
* The unload() hook is called right after unregistering
|
||||
@@ -611,7 +611,8 @@ struct drm_device *drm_dev_alloc(struct drm_driver *driver,
|
||||
int drm_dev_register(struct drm_device *dev, unsigned long flags);
|
||||
void drm_dev_unregister(struct drm_device *dev);
|
||||
|
||||
void drm_dev_ref(struct drm_device *dev);
|
||||
void drm_dev_get(struct drm_device *dev);
|
||||
void drm_dev_put(struct drm_device *dev);
|
||||
void drm_dev_unref(struct drm_device *dev);
|
||||
void drm_put_dev(struct drm_device *dev);
|
||||
void drm_dev_unplug(struct drm_device *dev);
|
||||
|
||||
Reference in New Issue
Block a user