repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
19 lines
458 B
C
19 lines
458 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __VLV_SUSPEND_H__
|
|
#define __VLV_SUSPEND_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct drm_i915_private;
|
|
|
|
int vlv_suspend_init(struct drm_i915_private *i915);
|
|
void vlv_suspend_cleanup(struct drm_i915_private *i915);
|
|
int vlv_suspend_complete(struct drm_i915_private *i915);
|
|
int vlv_resume_prepare(struct drm_i915_private *i915, bool rpm_resume);
|
|
|
|
#endif /* __VLV_SUSPEND_H__ */
|