diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-08-07 11:01:23 +0100 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-08-09 11:24:32 -0700 |
commit | b47eb4a2b302f33adaed2a27d2b3bfc74fe35ac5 (patch) | |
tree | cf99ac4cf8f54ec8f0a9c99fd821af041c32087a /drivers/gpu/drm/i915/Makefile | |
parent | 6f392d548658a17600da7faaf8a5df25ee5f01f6 (diff) | |
download | blackbird-op-linux-b47eb4a2b302f33adaed2a27d2b3bfc74fe35ac5.tar.gz blackbird-op-linux-b47eb4a2b302f33adaed2a27d2b3bfc74fe35ac5.zip |
drm/i915: Move the eviction logic to its own file.
The eviction code is the gnarly underbelly of memory management, and is
clearer if kept separated from the normal domain management in GEM.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu/drm/i915/Makefile')
-rw-r--r-- | drivers/gpu/drm/i915/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile index da78f2c0d909..384fd4535796 100644 --- a/drivers/gpu/drm/i915/Makefile +++ b/drivers/gpu/drm/i915/Makefile @@ -8,6 +8,7 @@ i915-y := i915_drv.o i915_dma.o i915_irq.o i915_mem.o \ i915_suspend.o \ i915_gem.o \ i915_gem_debug.o \ + i915_gem_evict.o \ i915_gem_tiling.o \ i915_trace_points.o \ intel_display.o \ |