mirror of
https://github.com/hardkernel/linux.git
synced 2026-05-03 18:55:31 +09:00
drm/i915/icl: Simplify release of encoder power refs
We can unconditionally release the power references during encoder disabling. The references for each port used by the encoder are guaranteed to be enabled at this point. Cc: Vandita Kulkarni <vandita.kulkarni@intel.com> Signed-off-by: Imre Deak <imre.deak@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20190405153657.20921-2-imre.deak@intel.com
This commit is contained in:
@@ -1146,13 +1146,11 @@ static void gen11_dsi_disable_io_power(struct intel_encoder *encoder)
|
||||
intel_wakeref_t wakeref;
|
||||
|
||||
wakeref = fetch_and_zero(&intel_dsi->io_wakeref[port]);
|
||||
if (wakeref) {
|
||||
intel_display_power_put(dev_priv,
|
||||
port == PORT_A ?
|
||||
POWER_DOMAIN_PORT_DDI_A_IO :
|
||||
POWER_DOMAIN_PORT_DDI_B_IO,
|
||||
wakeref);
|
||||
}
|
||||
intel_display_power_put(dev_priv,
|
||||
port == PORT_A ?
|
||||
POWER_DOMAIN_PORT_DDI_A_IO :
|
||||
POWER_DOMAIN_PORT_DDI_B_IO,
|
||||
wakeref);
|
||||
}
|
||||
|
||||
/* set mode to DDI */
|
||||
|
||||
Reference in New Issue
Block a user