mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 17:11:33 +00:00
drm: remove deprecated "drm_dev_unref" function
There are no more places where this (deprecated) function is being used from, thus it can now be removed. Signed-off-by: Fernando Ramos <greenfoo@gluegarage.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20181115221634.22715-5-greenfoo@gluegarage.com
This commit is contained in:
parent
808bad32ea
commit
ba1d345401
@ -704,19 +704,6 @@ void drm_dev_put(struct drm_device *dev)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(drm_dev_put);
|
EXPORT_SYMBOL(drm_dev_put);
|
||||||
|
|
||||||
/**
|
|
||||||
* drm_dev_unref - Drop reference of a DRM device
|
|
||||||
* @dev: device to drop reference of or NULL
|
|
||||||
*
|
|
||||||
* This is a compatibility alias for drm_dev_put() and should not be used by new
|
|
||||||
* code.
|
|
||||||
*/
|
|
||||||
void drm_dev_unref(struct drm_device *dev)
|
|
||||||
{
|
|
||||||
drm_dev_put(dev);
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(drm_dev_unref);
|
|
||||||
|
|
||||||
static int create_compat_control_link(struct drm_device *dev)
|
static int create_compat_control_link(struct drm_device *dev)
|
||||||
{
|
{
|
||||||
struct drm_minor *minor;
|
struct drm_minor *minor;
|
||||||
|
@ -625,7 +625,6 @@ void drm_dev_unregister(struct drm_device *dev);
|
|||||||
|
|
||||||
void drm_dev_get(struct drm_device *dev);
|
void drm_dev_get(struct drm_device *dev);
|
||||||
void drm_dev_put(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_put_dev(struct drm_device *dev);
|
||||||
bool drm_dev_enter(struct drm_device *dev, int *idx);
|
bool drm_dev_enter(struct drm_device *dev, int *idx);
|
||||||
void drm_dev_exit(int idx);
|
void drm_dev_exit(int idx);
|
||||||
|
Loading…
Reference in New Issue
Block a user