mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-01 03:44:27 -04:00
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: Michel Thierry <michel.thierry@intel.com> Reviewed-by: Mika Kuoppala <mika.kuoppala@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
committed by
Daniel Vetter
parent
7a01a0a292
commit
f37c05052f
@@ -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]);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user