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: Paulo Zanoni <paulo.r.zanoni@intel.com> Reviewed-by: Imre Deak <imre.deak@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
d4d5be6192
commit
da7235692c
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue