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

Commit f37c0505 authored by Michel Thierry's avatar Michel Thierry Committed by Daniel Vetter
Browse files

drm/i915/gtt: Switch gen8_free_page_tables params



After Mika's ppgtt cleanup series, all the other free functions have
drm_device as the first parameter, except this one.

No functional changes.

Signed-off-by: default avatarMichel Thierry <michel.thierry@intel.com>
Reviewed-by: default avatarMika Kuoppala <mika.kuoppala@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 7a01a0a2
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -619,7 +619,8 @@ static void gen8_initialize_pd(struct i915_address_space *vm,
	fill_px(vm->dev, pd, scratch_pde);
}

static void gen8_free_page_tables(struct i915_page_directory *pd, struct drm_device *dev)
static void gen8_free_page_tables(struct drm_device *dev,
				  struct i915_page_directory *pd)
{
	int i;

@@ -645,7 +646,8 @@ static void gen8_ppgtt_cleanup(struct i915_address_space *vm)
		if (WARN_ON(!ppgtt->pdp.page_directory[i]))
			continue;

		gen8_free_page_tables(ppgtt->pdp.page_directory[i], ppgtt->base.dev);
		gen8_free_page_tables(ppgtt->base.dev,
				      ppgtt->pdp.page_directory[i]);
		free_pd(ppgtt->base.dev, ppgtt->pdp.page_directory[i]);
	}