From c4808e206bcc5b3d3c0baa2e6e5130e67b78152b Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Sun, 18 Mar 2007 21:42:48 +1100 Subject: remove drm_lookup_map unused now --- linux-core/drm_memory.h | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'linux-core/drm_memory.h') diff --git a/linux-core/drm_memory.h b/linux-core/drm_memory.h index 32b89e5f..ab36b7d7 100644 --- a/linux-core/drm_memory.h +++ b/linux-core/drm_memory.h @@ -57,28 +57,6 @@ # endif #endif -/* - * Find the drm_map that covers the range [offset, offset+size). - */ -static inline drm_map_t *drm_lookup_map(unsigned long offset, - unsigned long size, drm_device_t * dev) -{ - struct list_head *list; - drm_map_list_t *r_list; - drm_map_t *map; - - list_for_each(list, &dev->maplist->head) { - r_list = (drm_map_list_t *) list; - map = r_list->map; - if (!map) - continue; - if (map->offset <= offset - && (offset + size) <= (map->offset + map->size)) - return map; - } - return NULL; -} - static inline void *agp_remap(unsigned long offset, unsigned long size, drm_device_t * dev) { -- cgit v1.2.3