Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.4 25 lines 587 B view raw
1/* 2 * SPDX-License-Identifier: MIT 3 * 4 * Copyright © 2019 Intel Corporation 5 */ 6 7#ifndef __I915_GEM_PM_H__ 8#define __I915_GEM_PM_H__ 9 10#include <linux/types.h> 11 12struct drm_i915_private; 13struct work_struct; 14 15void i915_gem_init__pm(struct drm_i915_private *i915); 16 17bool i915_gem_load_power_context(struct drm_i915_private *i915); 18void i915_gem_resume(struct drm_i915_private *i915); 19 20void i915_gem_idle_work_handler(struct work_struct *work); 21 22void i915_gem_suspend(struct drm_i915_private *i915); 23void i915_gem_suspend_late(struct drm_i915_private *i915); 24 25#endif /* __I915_GEM_PM_H__ */