diff options
| author | Tvrtko Ursulin <[email protected]> | 2021-04-29 08:35:29 +0000 |
|---|---|---|
| committer | Tvrtko Ursulin <[email protected]> | 2021-04-30 11:13:04 +0000 |
| commit | d8e44e4dd221ee283ea60a6fb87bca08807aa0ab (patch) | |
| tree | bc0c9a057a89df0ed0b618a2fbda00ddc0ee01f2 | |
| parent | drm/i915: Use trylock in shrinker for ggtt on bsw vt-d and bxt, v2. (diff) | |
| download | kernel-d8e44e4dd221ee283ea60a6fb87bca08807aa0ab.tar.gz kernel-d8e44e4dd221ee283ea60a6fb87bca08807aa0ab.zip | |
drm/i915/overlay: Fix active retire callback alignment
__i915_active_call annotation is required on the retire callback to ensure
correct function alignment.
Signed-off-by: Tvrtko Ursulin <[email protected]>
Fixes: a21ce8ad12d2 ("drm/i915/overlay: Switch to using i915_active tracking")
Cc: Chris Wilson <[email protected]>
Cc: Matthew Auld <[email protected]>
Reviewed-by: Ville Syrjälä <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
| -rw-r--r-- | drivers/gpu/drm/i915/display/intel_overlay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_overlay.c b/drivers/gpu/drm/i915/display/intel_overlay.c index d1255911a327..8fa4313569a9 100644 --- a/drivers/gpu/drm/i915/display/intel_overlay.c +++ b/drivers/gpu/drm/i915/display/intel_overlay.c @@ -383,7 +383,7 @@ static void intel_overlay_off_tail(struct intel_overlay *overlay) i830_overlay_clock_gating(dev_priv, true); } -static void +__i915_active_call static void intel_overlay_last_flip_retire(struct i915_active *active) { struct intel_overlay *overlay = |
