diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2020-01-11 11:30:07 +0300 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2020-01-11 11:47:36 +0300 |
commit | d713e3ab93fdc2468cfd1dcada16162f2d4cbe3d (patch) | |
tree | 838fb25fbe9bb3fdc813210b691c4683408488d0 /drivers | |
parent | 1868c7579f3522423b2f31f39e9ce752a4d457ab (diff) | |
download | linux-d713e3ab93fdc2468cfd1dcada16162f2d4cbe3d.tar.xz |
drm/i915: Correct typo in i915_vma_compress_finish stub
A copy and paste error in setting up the !CONFIG_DRM_I915_CAPTURE_ERROR
stubs left a conflicting duplicate declaration.
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Andi Shyti <andi.shyti@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200111083007.1619228-1-chris@chris-wilson.co.uk
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/i915/i915_gpu_error.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/i915_gpu_error.h b/drivers/gpu/drm/i915/i915_gpu_error.h index b87f39291c07..1c800448c3ea 100644 --- a/drivers/gpu/drm/i915/i915_gpu_error.h +++ b/drivers/gpu/drm/i915/i915_gpu_error.h @@ -304,12 +304,13 @@ intel_engine_coredump_add_vma(struct intel_engine_coredump *ee, } static inline struct i915_vma_compress * -i915_vma_compress_prepare(struct intel_gt_coredump *gt) +i915_vma_capture_prepare(struct intel_gt_coredump *gt) { return NULL; } -void i915_vma_compress_prepare(struct i915_vma_compress *compress) +void i915_vma_capture_finish(struct intel_gt_coredump *gt, + struct i915_vma_compress *compress) { } |