mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Replace multi-line SPDX license headers with single-line equivalents (// SPDX-License-Identifier: MIT or /* ... */ for headers), as preferred by current kernel coding style. Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> Reviewed-by: Nitin Gote <nitin.r.gote@intel.com> Acked-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Mikołaj Wasiak <mikolaj.wasiak@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20250327232629.2939-1-andi.shyti@linux.intel.com
25 lines
636 B
C
25 lines
636 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __I915_GEM_PM_H__
|
|
#define __I915_GEM_PM_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct drm_i915_private;
|
|
struct work_struct;
|
|
|
|
void i915_gem_resume(struct drm_i915_private *i915);
|
|
|
|
void i915_gem_idle_work_handler(struct work_struct *work);
|
|
|
|
void i915_gem_suspend(struct drm_i915_private *i915);
|
|
void i915_gem_suspend_late(struct drm_i915_private *i915);
|
|
int i915_gem_backup_suspend(struct drm_i915_private *i915);
|
|
|
|
int i915_gem_freeze(struct drm_i915_private *i915);
|
|
int i915_gem_freeze_late(struct drm_i915_private *i915);
|
|
|
|
#endif /* __I915_GEM_PM_H__ */
|