diff options
author | Imre Deak <imre.deak@intel.com> | 2022-02-22 19:51:34 +0300 |
---|---|---|
committer | Imre Deak <imre.deak@intel.com> | 2022-02-28 18:03:33 +0300 |
commit | ef1e170891904f0339af8fffbaad990243c7125b (patch) | |
tree | d9e59434c1bf0e701286e0ef91c2f069da580700 /drivers/gpu/drm/i915/Makefile | |
parent | 314fe7dce4139e80fe3df834d1c451917a1b0bc0 (diff) | |
download | linux-ef1e170891904f0339af8fffbaad990243c7125b.tar.xz |
drm/i915: Move power well get/put/enable/disable functions to a new file
Move the power well get/put/enable/disable hooks to the new
intel_display_power_well.c file. The motivation is to reduce the clutter
in intel_display_power.c, keeping the functionality related to power
domains in that file and moving the low-level power well functionality
to intel_display_power_well.c.
No functional change.
Suggested-by: Jani Nikula <jani.nikula@intel.com>
Cc: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220222165137.1004194-6-imre.deak@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/Makefile')
-rw-r--r-- | drivers/gpu/drm/i915/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile index 9d588d936e3d..1a771ee5b1d0 100644 --- a/drivers/gpu/drm/i915/Makefile +++ b/drivers/gpu/drm/i915/Makefile @@ -212,6 +212,7 @@ i915-y += \ display/intel_cursor.o \ display/intel_display.o \ display/intel_display_power.o \ + display/intel_display_power_well.o \ display/intel_dmc.o \ display/intel_dpio_phy.o \ display/intel_dpll.o \ |