diff options
author | Jani Nikula <jani.nikula@intel.com> | 2023-05-15 13:17:38 +0300 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2023-05-16 10:31:27 +0300 |
commit | 2b874a027810d50b627408f51c59b9648f778a19 (patch) | |
tree | b32e73f1ad9cbeec1438d461adee162afcef235c /drivers/gpu/drm/i915/Makefile | |
parent | da38ba98645d789ddda2a584d40e2de00139e98b (diff) | |
download | linux-2b874a027810d50b627408f51c59b9648f778a19.tar.xz |
drm/i915/irq: split out display irq handling
Split (non-hotplug) display irq handling out of i915_irq.[ch] into
display/intel_display_irq.[ch].
v3:
- Preserve [I915_MAX_PIPES] harder (kernel test robot)
v2:
- Rebase
- Preserve [I915_MAX_PIPES] in functions (kernel test robot)
Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230515101738.2399816-3-jani.nikula@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 cc80d483fd6f..1f4c9b99c2c9 100644 --- a/drivers/gpu/drm/i915/Makefile +++ b/drivers/gpu/drm/i915/Makefile @@ -238,6 +238,7 @@ i915-y += \ display/intel_cursor.o \ display/intel_display.o \ display/intel_display_driver.o \ + display/intel_display_irq.o \ display/intel_display_power.o \ display/intel_display_power_map.o \ display/intel_display_power_well.o \ |