summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2013-08-14 02:16:55 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2013-08-14 02:16:55 +0000
commitdc09555d88e8e6488ff437218492ad5998fef3cd (patch)
treea60dc3b9b32b4617683c8456b41ec3a68a4cae2b
parentb0d7f4f7f3a72cc00ee413353dcb00ee2387fbb7 (diff)
remove references to ati_pcigart
-rw-r--r--sys/dev/pci/drm/drmP.h26
1 files changed, 1 insertions, 25 deletions
diff --git a/sys/dev/pci/drm/drmP.h b/sys/dev/pci/drm/drmP.h
index 5b32883ba12..7239623109d 100644
--- a/sys/dev/pci/drm/drmP.h
+++ b/sys/dev/pci/drm/drmP.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: drmP.h,v 1.142 2013/08/13 10:23:48 jsg Exp $ */
+/* $OpenBSD: drmP.h,v 1.143 2013/08/14 02:16:54 jsg Exp $ */
/* drmP.h -- Private header for Direct Rendering Manager -*- linux-c -*-
* Created: Mon Jan 4 10:05:05 1999 by faith@precisioninsight.com
*/
@@ -532,24 +532,6 @@ struct drm_mem {
#define lower_32_bits(n) ((u32)(n))
#define upper_32_bits(_val) ((u_int32_t)(((_val) >> 16) >> 16))
-struct drm_ati_pcigart_info {
- union pcigart_table {
- struct fb_gart {
- bus_space_tag_t bst;
- bus_space_handle_t bsh;
- } fb;
- struct mem_gart {
- struct drm_dmamem *mem;
- u_int32_t *addr;
- } dma;
- } tbl;
- bus_addr_t bus_addr;
- bus_addr_t table_mask;
- bus_size_t table_size;
- int gart_table_location;
- int gart_reg_if;
-};
-
/*
* Locking protocol:
* All drm object are uvm objects, as such they have a reference count and
@@ -951,12 +933,6 @@ int drm_agp_unbind(struct drm_device *, struct drm_agp_binding *);
void drm_sg_cleanup(struct drm_device *, struct drm_sg_mem *);
int drm_sg_alloc(struct drm_device *, struct drm_scatter_gather *);
-/* ATI PCIGART support (ati_pcigart.c) */
-int drm_ati_pcigart_init(struct drm_device *,
- struct drm_ati_pcigart_info *);
-int drm_ati_pcigart_cleanup(struct drm_device *,
- struct drm_ati_pcigart_info *);
-
/* Locking IOCTL support (drm_drv.c) */
int drm_lock(struct drm_device *, void *, struct drm_file *);
int drm_unlock(struct drm_device *, void *, struct drm_file *);