diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-11-25 18:00:26 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-11-25 21:19:25 +0000 |
commit | 54cf91dc4e51fd5070a9a2346377493cc38a1ca9 (patch) | |
tree | 93a2c164b13de36af9c7d7e26df29da9a4b2c371 /drivers/gpu/drm/i915/Makefile | |
parent | 6299f992c0491232f008028a1f40bc9d86c4c76c (diff) | |
download | talos-obmc-linux-54cf91dc4e51fd5070a9a2346377493cc38a1ca9.tar.gz talos-obmc-linux-54cf91dc4e51fd5070a9a2346377493cc38a1ca9.zip |
drm/i915: Split i915_gem_execbuffer into its own file.
A number of dragons have been seen lurking within the execbuffer code.
The first step is then to isolate them from the rest and begin to
scrutinise them in depth. Suggested by Daniel Vetter.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'drivers/gpu/drm/i915/Makefile')
-rw-r--r-- | drivers/gpu/drm/i915/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile index b3cdb4fe46e0..0ae6a7c5020f 100644 --- a/drivers/gpu/drm/i915/Makefile +++ b/drivers/gpu/drm/i915/Makefile @@ -8,8 +8,9 @@ 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_gtt.o \ i915_gem_evict.o \ + i915_gem_execbuffer.o \ + i915_gem_gtt.o \ i915_gem_tiling.o \ i915_trace_points.o \ intel_display.o \ |