diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2019-05-28 12:29:53 +0300 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2019-05-28 14:45:29 +0300 |
commit | 3f43c8767ed7d32a0fcd3f531eda6808e4de4f4e (patch) | |
tree | 10ff649dd5c1c7bbd2cb31df825815fd060e5ef3 /drivers/gpu/drm/i915/Makefile | |
parent | d45a1a533499d3ef1f3d9b750de93306f0c3dbe8 (diff) | |
download | linux-3f43c8767ed7d32a0fcd3f531eda6808e4de4f4e.tar.xz |
drm/i915: Move GEM object busy checking to its own file
Continuing the decluttering of i915_gem.c by moving the object busy
checking into its own file.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190528092956.14910-12-chris@chris-wilson.co.uk
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 a4ea6f6b2ab7..e1ed526b96bf 100644 --- a/drivers/gpu/drm/i915/Makefile +++ b/drivers/gpu/drm/i915/Makefile @@ -88,6 +88,7 @@ i915-y += $(gt-y) # GEM (Graphics Execution Management) code obj-y += gem/ gem-y += \ + gem/i915_gem_busy.o \ gem/i915_gem_clflush.o \ gem/i915_gem_context.o \ gem/i915_gem_dmabuf.o \ |