summaryrefslogtreecommitdiff
path: root/linux-core/drm_mm.c
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-10-26 21:20:34 +0200
committerThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-10-26 21:20:34 +0200
commite09544a2d3f44e96d01ed2bdcb4a4eb8eec26225 (patch)
tree2f5bfa94eac61df6c55ccb6940f91355cf2e7098 /linux-core/drm_mm.c
parent47dbfc4e4a3e8ce2ec468bc3874f74f7e2b13476 (diff)
New mm function names. Update header.
Diffstat (limited to 'linux-core/drm_mm.c')
-rw-r--r--linux-core/drm_mm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/linux-core/drm_mm.c b/linux-core/drm_mm.c
index 5e0ba5e4..dcd55209 100644
--- a/linux-core/drm_mm.c
+++ b/linux-core/drm_mm.c
@@ -44,7 +44,7 @@
#include "drmP.h"
#include <linux/slab.h>
-unsigned long tail_space(drm_mm_t *mm)
+unsigned long drm_mm_tail_space(drm_mm_t *mm)
{
struct list_head *tail_node;
drm_mm_node_t *entry;
@@ -57,7 +57,7 @@ unsigned long tail_space(drm_mm_t *mm)
return entry->size;
}
-int remove_space_from_tail(drm_mm_t *mm, unsigned long size)
+int drm_mm_remove_space_from_tail(drm_mm_t *mm, unsigned long size)
{
struct list_head *tail_node;
drm_mm_node_t *entry;
@@ -99,7 +99,7 @@ static int drm_mm_create_tail_node(drm_mm_t *mm,
}
-int add_space_to_tail(drm_mm_t *mm, unsigned long size)
+int drm_mm_add_space_to_tail(drm_mm_t *mm, unsigned long size)
{
struct list_head *tail_node;
drm_mm_node_t *entry;