Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c7e16f22 authored by Daniel Vetter's avatar Daniel Vetter
Browse files

drm/i915: Move gen8 clear_range vfunc setup into common code

parent 8a0c39b1
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -994,6 +994,7 @@ static int gen8_ppgtt_init_common(struct i915_hw_ppgtt *ppgtt, uint64_t size)
	ppgtt->base.total = size;
	ppgtt->base.cleanup = gen8_ppgtt_cleanup;
	ppgtt->base.insert_entries = gen8_ppgtt_insert_entries;
	ppgtt->base.clear_range = gen8_ppgtt_clear_range;

	ppgtt->switch_mm = gen8_mm_switch;

@@ -1022,7 +1023,6 @@ static int gen8_aliasing_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
	}

	ppgtt->base.allocate_va_range = NULL;
	ppgtt->base.clear_range = gen8_ppgtt_clear_range;
	ppgtt->base.clear_range(&ppgtt->base, 0, ppgtt->base.total, true);

	return 0;
@@ -1037,7 +1037,6 @@ static int gen8_ppgtt_init(struct i915_hw_ppgtt *ppgtt)
		return ret;

	ppgtt->base.allocate_va_range = gen8_alloc_va_range;
	ppgtt->base.clear_range = gen8_ppgtt_clear_range;

	return 0;
}