diff options
author | 2013-08-14 02:16:54 +0000 | |
---|---|---|
committer | 2013-08-14 02:16:54 +0000 | |
commit | afe6e5a28bbb82ad1021f2054efbe98ff8d09927 (patch) | |
tree | 386db104a2a677eaedc95c418ada2e25f25d169a | |
parent | ati_pcigart.c is no longer needed (diff) | |
download | wireguard-openbsd-afe6e5a28bbb82ad1021f2054efbe98ff8d09927.tar.xz wireguard-openbsd-afe6e5a28bbb82ad1021f2054efbe98ff8d09927.zip |
remove references to ati_pcigart
-rw-r--r-- | sys/dev/pci/drm/drmP.h | 26 |
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 *); |