aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/tegra/drm.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/tegra/drm.c')
-rw-r--r--drivers/gpu/drm/tegra/drm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/tegra/drm.c b/drivers/gpu/drm/tegra/drm.c
index 9a1e34e48f64..51c48a8e00ec 100644
--- a/drivers/gpu/drm/tegra/drm.c
+++ b/drivers/gpu/drm/tegra/drm.c
@@ -892,7 +892,7 @@ static int tegra_drm_context_cleanup(int id, void *p, void *data)
892 return 0; 892 return 0;
893} 893}
894 894
895static void tegra_drm_preclose(struct drm_device *drm, struct drm_file *file) 895static void tegra_drm_postclose(struct drm_device *drm, struct drm_file *file)
896{ 896{
897 struct tegra_drm_file *fpriv = file->driver_priv; 897 struct tegra_drm_file *fpriv = file->driver_priv;
898 898
@@ -960,7 +960,7 @@ static struct drm_driver tegra_drm_driver = {
960 .load = tegra_drm_load, 960 .load = tegra_drm_load,
961 .unload = tegra_drm_unload, 961 .unload = tegra_drm_unload,
962 .open = tegra_drm_open, 962 .open = tegra_drm_open,
963 .preclose = tegra_drm_preclose, 963 .postclose = tegra_drm_postclose,
964 .lastclose = tegra_drm_lastclose, 964 .lastclose = tegra_drm_lastclose,
965 965
966#if defined(CONFIG_DEBUG_FS) 966#if defined(CONFIG_DEBUG_FS)