summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/i915/i915_suspend.h
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2020-10-05 20:14:41 +0300
committerVille Syrjälä <ville.syrjala@linux.intel.com>2020-10-09 21:12:13 +0300
commit0f8d2a2b9fd52a554a3e00f415baf2f7eed9e9af (patch)
tree6b9834921931b109371570c930034e029697489e /drivers/gpu/drm/i915/i915_suspend.h
parentf13c2a0032f025fadb57443ed7c2e8eb8e9571df (diff)
downloadlinux-0f8d2a2b9fd52a554a3e00f415baf2f7eed9e9af.tar.xz
drm/i915: Rename i915_{save,restore}_state()
i915_{save,restore}_state() are actually all about the display. Currently they are split into display part + SWF part. But since the SWF part is also related to the display let's just move that part into its own thing and flip the roles around so that the current display part is the main function. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20201005171441.26612-1-ville.syrjala@linux.intel.com Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_suspend.h')
-rw-r--r--drivers/gpu/drm/i915/i915_suspend.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/i915_suspend.h b/drivers/gpu/drm/i915/i915_suspend.h
index 3a36fb4ecc05..e5a611ee3d15 100644
--- a/drivers/gpu/drm/i915/i915_suspend.h
+++ b/drivers/gpu/drm/i915/i915_suspend.h
@@ -8,7 +8,7 @@
struct drm_i915_private;
-int i915_save_state(struct drm_i915_private *i915);
-int i915_restore_state(struct drm_i915_private *i915);
+void i915_save_display(struct drm_i915_private *i915);
+void i915_restore_display(struct drm_i915_private *i915);
#endif /* __I915_SUSPEND_H__ */