Skip to content

Commit

Permalink
drm/i915: Pass intel_gt to intel_engines_verify_workarounds
Browse files Browse the repository at this point in the history
Engines belong to the GT so make it indicative in the API.

Signed-off-by: Tvrtko Ursulin <[email protected]>
Reviewed-by: Chris Wilson <[email protected]>
Signed-off-by: Chris Wilson <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
  • Loading branch information
tursulin authored and ickle committed Oct 22, 2019
1 parent 7841fcb commit 7f63aa2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/gpu/drm/i915/i915_gem.c
Original file line number Diff line number Diff line change
Expand Up @@ -1198,7 +1198,7 @@ static int __intel_engines_record_defaults(struct drm_i915_private *i915)
return err;
}

static int intel_engines_verify_workarounds(struct drm_i915_private *i915)
static int intel_engines_verify_workarounds(struct intel_gt *gt)
{
struct intel_engine_cs *engine;
enum intel_engine_id id;
Expand All @@ -1207,7 +1207,7 @@ static int intel_engines_verify_workarounds(struct drm_i915_private *i915)
if (!IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM))
return 0;

for_each_engine(engine, i915, id) {
for_each_engine(engine, gt, id) {
if (intel_engine_verify_workarounds(engine, "load"))
err = -EIO;
}
Expand Down Expand Up @@ -1291,7 +1291,7 @@ int i915_gem_init(struct drm_i915_private *dev_priv)
*/
intel_init_clock_gating(dev_priv);

ret = intel_engines_verify_workarounds(dev_priv);
ret = intel_engines_verify_workarounds(&dev_priv->gt);
if (ret)
goto err_gt;

Expand Down

0 comments on commit 7f63aa2

Please sign in to comment.