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 v6.6 18 lines 458 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2020 Intel Corporation 4 */ 5 6#ifndef __VLV_SUSPEND_H__ 7#define __VLV_SUSPEND_H__ 8 9#include <linux/types.h> 10 11struct drm_i915_private; 12 13int vlv_suspend_init(struct drm_i915_private *i915); 14void vlv_suspend_cleanup(struct drm_i915_private *i915); 15int vlv_suspend_complete(struct drm_i915_private *i915); 16int vlv_resume_prepare(struct drm_i915_private *i915, bool rpm_resume); 17 18#endif /* __VLV_SUSPEND_H__ */