drm/i915: Drop irqsave/restore for flip_done_handler()
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 28 Sep 2023 15:24:50 +0000 (18:24 +0300)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Sat, 9 Dec 2023 02:14:28 +0000 (04:14 +0200)
Since flip_done_handler() is always called from the irq handler
we can skip the irqsave/restore dance.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230928152450.30109-2-ville.syrjala@linux.intel.com
Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com>
drivers/gpu/drm/i915/display/intel_display_irq.c

index 6f2b45cfcf72104da26c097569973107635c540e..a7d8f3fc98de91ec31436a4a2b2a78606e6d2466 100644 (file)
@@ -340,17 +340,15 @@ static void flip_done_handler(struct drm_i915_private *i915,
                              enum pipe pipe)
 {
        struct intel_crtc *crtc = intel_crtc_for_pipe(i915, pipe);
-       struct drm_device *dev = &i915->drm;
-       unsigned long irqflags;
 
-       spin_lock_irqsave(&dev->event_lock, irqflags);
+       spin_lock(&i915->drm.event_lock);
 
        if (crtc->flip_done_event) {
                drm_crtc_send_vblank_event(&crtc->base, crtc->flip_done_event);
                crtc->flip_done_event = NULL;
        }
 
-       spin_unlock_irqrestore(&dev->event_lock, irqflags);
+       spin_unlock(&i915->drm.event_lock);
 }
 
 static void hsw_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,