diff options
author | Jani Nikula <jani.nikula@intel.com> | 2020-02-25 14:15:07 +0300 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2020-02-27 10:16:01 +0300 |
commit | d28ae3b28187fd50a8eabe4befca71ec9ced9a5c (patch) | |
tree | 3c3d5b5b772da16f452f2a84463b5b61f6f64b9a /drivers/gpu/drm/i915/Makefile | |
parent | 83d2bdb6a0e088a0ec8fe1e2877c8aa1a4a80330 (diff) | |
download | linux-d28ae3b28187fd50a8eabe4befca71ec9ced9a5c.tar.xz |
drm/i915: split out intel_dram.[ch] from i915_drv.c
The DRAM related routines are pretty isolated from the rest of the
i915_drv.c, split it out to a separate file. Put the eDRAM stuff in the
same bag, and rename the visible functions to have intel_dram_
prefix. Do some benign whitespace fixes and dev_priv -> i915 conversions
while at it.
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200225111509.21879-1-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 9db81b9ac0f3..fe6d580869d7 100644 --- a/drivers/gpu/drm/i915/Makefile +++ b/drivers/gpu/drm/i915/Makefile @@ -47,6 +47,7 @@ i915-y += i915_drv.o \ i915_sysfs.o \ i915_utils.o \ intel_device_info.o \ + intel_dram.o \ intel_memory_region.o \ intel_pch.o \ intel_pm.o \ |