diff options
author | Jani Nikula <jani.nikula@intel.com> | 2019-10-04 15:20:18 +0300 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2019-10-06 11:25:00 +0300 |
commit | 63bf8301aac492d4c5fdf7b0ec42b142c05080e3 (patch) | |
tree | b95cf6714499cfef7e6db1a4c371e0526316bd11 /drivers/gpu/drm/i915/Makefile | |
parent | 7fd296024c3cd06773a1df712b2c50932aeea60b (diff) | |
download | linux-63bf8301aac492d4c5fdf7b0ec42b142c05080e3.tar.xz |
drm/i915: split out i915_switcheroo.[ch] from i915_drv.c
Split out code related to vga switcheroo register/unregister and state
handling from i915_drv.c into new i915_switcheroo.[ch] files.
It's a bit difficult to draw the line how much to move to the new file
from i915_drv.c, but it seemed to me keeping i915_suspend_switcheroo()
and i915_resume_switcheroo() in place was the cleanest.
No functional changes.
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191004122019.12009-2-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 4e23f1a5c39f..45d3be12359d 100644 --- a/drivers/gpu/drm/i915/Makefile +++ b/drivers/gpu/drm/i915/Makefile @@ -46,6 +46,7 @@ i915-y += i915_drv.o \ i915_pci.o \ i915_scatterlist.o \ i915_suspend.o \ + i915_switcheroo.o \ i915_sysfs.o \ i915_utils.o \ intel_csr.o \ |