drm/exynos: Merge pre/postclose hooks
Again no apparent explanation for the split except hysterical raisins. Cc: Inki Dae <inki.dae@samsung.com> Cc: Joonyoung Shim <jy0922.shim@samsung.com> Cc: Seung-Woo Kim <sw0312.kim@samsung.com> Cc: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
This commit is contained in:
parent
bc1f0e04da
commit
4013ef4879
@ -82,14 +82,9 @@ err_file_priv_free:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void exynos_drm_preclose(struct drm_device *dev,
|
|
||||||
struct drm_file *file)
|
|
||||||
{
|
|
||||||
exynos_drm_subdrv_close(dev, file);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void exynos_drm_postclose(struct drm_device *dev, struct drm_file *file)
|
static void exynos_drm_postclose(struct drm_device *dev, struct drm_file *file)
|
||||||
{
|
{
|
||||||
|
exynos_drm_subdrv_close(dev, file);
|
||||||
kfree(file->driver_priv);
|
kfree(file->driver_priv);
|
||||||
file->driver_priv = NULL;
|
file->driver_priv = NULL;
|
||||||
}
|
}
|
||||||
@ -145,7 +140,6 @@ static struct drm_driver exynos_drm_driver = {
|
|||||||
.driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME
|
.driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME
|
||||||
| DRIVER_ATOMIC | DRIVER_RENDER,
|
| DRIVER_ATOMIC | DRIVER_RENDER,
|
||||||
.open = exynos_drm_open,
|
.open = exynos_drm_open,
|
||||||
.preclose = exynos_drm_preclose,
|
|
||||||
.lastclose = exynos_drm_lastclose,
|
.lastclose = exynos_drm_lastclose,
|
||||||
.postclose = exynos_drm_postclose,
|
.postclose = exynos_drm_postclose,
|
||||||
.gem_free_object_unlocked = exynos_drm_gem_free_object,
|
.gem_free_object_unlocked = exynos_drm_gem_free_object,
|
||||||
|
Loading…
Reference in New Issue
Block a user