diff options
author | Jani Nikula <jani.nikula@intel.com> | 2019-08-06 12:07:30 +0200 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2019-08-07 11:43:55 +0200 |
commit | 6da4a2c411e8d9be6f848f9207beb69f13113546 (patch) | |
tree | 2700ae3e90313d403c82ec5f0dadd1869d37757d /drivers/gpu/drm/i915/i915_suspend.c | |
parent | drm/i915: rename intel_drv.h to display/intel_display_types.h (diff) | |
download | linux-6da4a2c411e8d9be6f848f9207beb69f13113546.tar.xz linux-6da4a2c411e8d9be6f848f9207beb69f13113546.zip |
drm/i915: remove unnecessary includes of intel_display_types.h header
With its original name intel_drv.h the intel_display_types.h header was
superfluously cargo-cult included all over the place, while it's really
mostly about display internals. Remove the unnecessary includes.
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/e3d737f0ab87c55969e62c1e077e15c04c238297.1565085692.git.jani.nikula@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/i915_suspend.c')
-rw-r--r-- | drivers/gpu/drm/i915/i915_suspend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_suspend.c b/drivers/gpu/drm/i915/i915_suspend.c index 9b95084737c1..e41cf73a9737 100644 --- a/drivers/gpu/drm/i915/i915_suspend.c +++ b/drivers/gpu/drm/i915/i915_suspend.c @@ -26,10 +26,10 @@ #include <drm/i915_drm.h> -#include "display/intel_display_types.h" #include "display/intel_fbc.h" #include "display/intel_gmbus.h" +#include "i915_drv.h" #include "i915_reg.h" static void i915_save_display(struct drm_i915_private *dev_priv) |