Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da723569 authored by Paulo Zanoni's avatar Paulo Zanoni Committed by Daniel Vetter
Browse files

drm/i915: rename modeset_update_power_wells



To modeset_update_crtc_power_domains, since this function is
responsible for updating all the power domains of all CRTCs after a
modeset. In the future we should also run this function on all
platforms, not just Haswell.

Signed-off-by: default avatarPaulo Zanoni <paulo.r.zanoni@intel.com>
Reviewed-by: default avatarImre Deak <imre.deak@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent d4d5be61
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -6873,7 +6873,7 @@ void intel_display_set_init_power(struct drm_device *dev, bool enable)
	dev_priv->power_domains.init_power_on = enable;
}

static void modeset_update_power_wells(struct drm_device *dev)
static void modeset_update_crtc_power_domains(struct drm_device *dev)
{
	unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
	struct intel_crtc *crtc;
@@ -6910,7 +6910,7 @@ static void modeset_update_power_wells(struct drm_device *dev)

static void haswell_modeset_global_resources(struct drm_device *dev)
{
	modeset_update_power_wells(dev);
	modeset_update_crtc_power_domains(dev);
	hsw_update_package_c8(dev);
}