diff options
| author | Eric Anholt <eric@anholt.net> | 2008-04-28 16:54:53 -0700 | 
|---|---|---|
| committer | Eric Anholt <eric@anholt.net> | 2008-04-28 16:54:53 -0700 | 
| commit | 3ad8db2071d30c198403e605f2726fc5c3e46bfd (patch) | |
| tree | 93ff7f1c47f553ae1cc20816cce9457d5c5878ee /linux-core/drm_drv.c | |
| parent | 22877864c204139fe1c46899bedd237e38f0e849 (diff) | |
Rename drm_mm.c and its fuctions to drm_memrange.
It's not really a graphics memory allocator, just something to track ranges
of address space.  It doesn't involve actual allocation, and was consuming
some desired namespace.
Diffstat (limited to 'linux-core/drm_drv.c')
| -rw-r--r-- | linux-core/drm_drv.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/linux-core/drm_drv.c b/linux-core/drm_drv.c index b8b8333e..b5bd3616 100644 --- a/linux-core/drm_drv.c +++ b/linux-core/drm_drv.c @@ -415,7 +415,7 @@ static void drm_cleanup(struct drm_device * dev)  	drm_ctxbitmap_cleanup(dev);  	drm_ht_remove(&dev->map_hash); -	drm_mm_takedown(&dev->offset_manager); +	drm_memrange_takedown(&dev->offset_manager);  	drm_ht_remove(&dev->object_hash);  	drm_put_minor(&dev->primary); | 
