From e615bf7c1006f76743c9cfcd8e42a248eaa45b42 Mon Sep 17 00:00:00 2001 From: oga Date: Sun, 17 Aug 2008 23:36:22 +0000 Subject: [PATCH] Kill a dead function and a dead struct member. --- sys/dev/pci/drm/drmP.h | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/sys/dev/pci/drm/drmP.h b/sys/dev/pci/drm/drmP.h index bac31c95c5a..60a74cad850 100644 --- a/sys/dev/pci/drm/drmP.h +++ b/sys/dev/pci/drm/drmP.h @@ -479,21 +479,18 @@ struct drm_memrange { typedef TAILQ_HEAD(drm_map_list, drm_local_map) drm_map_list_t; typedef struct drm_local_map { - unsigned long offset; /* Physical address (0 for SAREA)*/ - unsigned long size; /* Physical size (bytes) */ - drm_map_type_t type; /* Type of memory mapped */ - drm_map_flags_t flags; /* Flags */ - void *handle; /* User-space: "Handle" to pass to mmap */ - /* Kernel-space: kernel-virtual address */ - int mtrr; /* Boolean: MTRR used */ - /* Private data */ - int rid; /* PCI resource ID for bus_space */ - struct vga_pci_bar *bsr; - bus_space_tag_t bst; - bus_space_handle_t bsh; - drm_dma_handle_t *dmah; - TAILQ_ENTRY(drm_local_map) link; - struct drm_memrange_node *mm; + TAILQ_ENTRY(drm_local_map) link; /* Link for map list */ + struct vga_pci_bar *bsr; /* Vga BAR, if applicable */ + drm_dma_handle_t *dmah; /* Handle to DMA mem */ + void *handle;/* KVA, if mapped */ + struct drm_memrange_node *mm; /* mmap offset */ + bus_space_tag_t bst; /* Tag for mapped pci mem */ + bus_space_handle_t bsh; /* Handle to mapped pci mem */ + drm_map_flags_t flags; /* Flags */ + int mtrr; /* Boolean: MTRR used */ + unsigned long offset;/* Physical address */ + unsigned long size; /* Physical size (bytes) */ + drm_map_type_t type; /* Type of memory mapped */ } drm_local_map_t; TAILQ_HEAD(drm_vbl_sig_list, drm_vbl_sig); @@ -909,9 +906,5 @@ static __inline__ struct drm_local_map *drm_core_findmap(struct drm_device *dev, return NULL; } -static __inline__ void drm_core_dropmap(struct drm_map *map) -{ -} - #endif /* __KERNEL__ */ #endif /* _DRM_P_H_ */ -- 2.20.1