aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/ttm/ttm_memory.c
diff options
context:
space:
mode:
authorThomas Hellstrom <thellstrom@vmware.com>2009-12-06 15:46:27 -0500
committerDave Airlie <airlied@redhat.com>2009-12-07 00:22:07 -0500
commit4bfd75cb08a362cb1df35dc6a5032d12843c6d87 (patch)
tree1363edb589855b593d916411bf3d2f2b5e6cfcf1 /drivers/gpu/drm/ttm/ttm_memory.c
parentc078aa2fc4d8e022c3b611e07b25ff77afdf9b73 (diff)
drm/ttm: Export symbols needed for the vmwgfx driver.
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/ttm/ttm_memory.c')
-rw-r--r--drivers/gpu/drm/ttm/ttm_memory.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_memory.c b/drivers/gpu/drm/ttm/ttm_memory.c
index 336976e8652..8bfde5f4084 100644
--- a/drivers/gpu/drm/ttm/ttm_memory.c
+++ b/drivers/gpu/drm/ttm/ttm_memory.c
@@ -461,6 +461,7 @@ void ttm_mem_global_free(struct ttm_mem_global *glob,
461{ 461{
462 return ttm_mem_global_free_zone(glob, NULL, amount); 462 return ttm_mem_global_free_zone(glob, NULL, amount);
463} 463}
464EXPORT_SYMBOL(ttm_mem_global_free);
464 465
465static int ttm_mem_global_reserve(struct ttm_mem_global *glob, 466static int ttm_mem_global_reserve(struct ttm_mem_global *glob,
466 struct ttm_mem_zone *single_zone, 467 struct ttm_mem_zone *single_zone,
@@ -534,6 +535,7 @@ int ttm_mem_global_alloc(struct ttm_mem_global *glob, uint64_t memory,
534 return ttm_mem_global_alloc_zone(glob, NULL, memory, no_wait, 535 return ttm_mem_global_alloc_zone(glob, NULL, memory, no_wait,
535 interruptible); 536 interruptible);
536} 537}
538EXPORT_SYMBOL(ttm_mem_global_alloc);
537 539
538int ttm_mem_global_alloc_page(struct ttm_mem_global *glob, 540int ttm_mem_global_alloc_page(struct ttm_mem_global *glob,
539 struct page *page, 541 struct page *page,
@@ -589,3 +591,4 @@ size_t ttm_round_pot(size_t size)
589 } 591 }
590 return 0; 592 return 0;
591} 593}
594EXPORT_SYMBOL(ttm_round_pot);