aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Stach <dev@lynxeye.de>2012-12-19 16:38:56 -0500
committerDave Airlie <airlied@redhat.com>2012-12-29 23:01:34 -0500
commite39250aa5246b43aae882274e345620f665ab5ef (patch)
tree43249f55eefeab8c5099c5a6e26c393377d774be
parentfa416ddc0ae5996d894b10f7f49efc2a494b048b (diff)
drm: tegra: clean out old gem prototypes
There is no gem.c anymore, those functions are implemented by the drm_cma_helpers now. Signed-off-by: Lucas Stach <dev@lynxeye.de> Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r--drivers/gpu/drm/tegra/drm.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/drivers/gpu/drm/tegra/drm.h b/drivers/gpu/drm/tegra/drm.h
index eae1f564b716..71e61f2b0741 100644
--- a/drivers/gpu/drm/tegra/drm.h
+++ b/drivers/gpu/drm/tegra/drm.h
@@ -205,24 +205,6 @@ extern int tegra_output_parse_dt(struct tegra_output *output);
205extern int tegra_output_init(struct drm_device *drm, struct tegra_output *output); 205extern int tegra_output_init(struct drm_device *drm, struct tegra_output *output);
206extern int tegra_output_exit(struct tegra_output *output); 206extern int tegra_output_exit(struct tegra_output *output);
207 207
208/* from gem.c */
209extern struct tegra_gem_object *tegra_gem_alloc(struct drm_device *drm,
210 size_t size);
211extern int tegra_gem_handle_create(struct drm_device *drm,
212 struct drm_file *file, size_t size,
213 unsigned long flags, uint32_t *handle);
214extern int tegra_gem_dumb_create(struct drm_file *file, struct drm_device *drm,
215 struct drm_mode_create_dumb *args);
216extern int tegra_gem_dumb_map_offset(struct drm_file *file,
217 struct drm_device *drm, uint32_t handle,
218 uint64_t *offset);
219extern int tegra_gem_dumb_destroy(struct drm_file *file,
220 struct drm_device *drm, uint32_t handle);
221extern int tegra_drm_gem_mmap(struct file *filp, struct vm_area_struct *vma);
222extern int tegra_gem_init_object(struct drm_gem_object *obj);
223extern void tegra_gem_free_object(struct drm_gem_object *obj);
224extern struct vm_operations_struct tegra_gem_vm_ops;
225
226/* from fb.c */ 208/* from fb.c */
227extern int tegra_drm_fb_init(struct drm_device *drm); 209extern int tegra_drm_fb_init(struct drm_device *drm);
228extern void tegra_drm_fb_exit(struct drm_device *drm); 210extern void tegra_drm_fb_exit(struct drm_device *drm);