summaryrefslogtreecommitdiff
path: root/linux-core/drm_memory_debug.h
diff options
context:
space:
mode:
authorJose Fonseca <jrfonseca@users.sourceforge.net>2003-06-19 00:09:52 +0000
committerJose Fonseca <jrfonseca@users.sourceforge.net>2003-06-19 00:09:52 +0000
commit93522f6d3ad6924cbf413915491e4f8228502d98 (patch)
tree585f12bf357fed6656c6334b9ff9075b8a7514b5 /linux-core/drm_memory_debug.h
parent0a995b624d325055abf5ba09d39ac8d85866d85a (diff)
Revert the janitorial - that works is now on the new branch
newdrm-0-0-1-branch.
Diffstat (limited to 'linux-core/drm_memory_debug.h')
-rw-r--r--linux-core/drm_memory_debug.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/linux-core/drm_memory_debug.h b/linux-core/drm_memory_debug.h
index 91b42126..5cfff83a 100644
--- a/linux-core/drm_memory_debug.h
+++ b/linux-core/drm_memory_debug.h
@@ -1,5 +1,5 @@
/**
- * \file drm_memory_debug.h
+ * \file drm_memory.h
* Memory management wrappers for DRM.
*
* \author Rickard E. (Rik) Faith <faith@valinux.com>
@@ -343,7 +343,7 @@ void DRM(ioremapfree)(void *pt, unsigned long size, drm_device_t *dev)
#if __REALLY_HAVE_AGP
-agp_memory *DRM(agp_alloc)(int pages, u32 type)
+agp_memory *DRM(alloc_agp)(int pages, u32 type)
{
agp_memory *handle;
@@ -366,7 +366,7 @@ agp_memory *DRM(agp_alloc)(int pages, u32 type)
return NULL;
}
-int DRM(agp_free)(agp_memory *handle, int pages)
+int DRM(free_agp)(agp_memory *handle, int pages)
{
int alloc_count;
int free_count;
@@ -395,7 +395,7 @@ int DRM(agp_free)(agp_memory *handle, int pages)
return retval;
}
-int DRM(agp_bind)(agp_memory *handle, unsigned int start)
+int DRM(bind_agp)(agp_memory *handle, unsigned int start)
{
int retcode = -EINVAL;
@@ -419,7 +419,7 @@ int DRM(agp_bind)(agp_memory *handle, unsigned int start)
return retcode;
}
-int DRM(agp_unbind)(agp_memory *handle)
+int DRM(unbind_agp)(agp_memory *handle)
{
int alloc_count;
int free_count;