Home | History | Annotate | Line # | Download | only in i915
      1 /*	$NetBSD: i915_suspend.h,v 1.2 2021/12/18 23:45:28 riastradh Exp $	*/
      2 
      3 /* SPDX-License-Identifier: MIT */
      4 /*
      5  * Copyright  2019 Intel Corporation
      6  */
      7 
      8 #ifndef __I915_SUSPEND_H__
      9 #define __I915_SUSPEND_H__
     10 
     11 struct drm_i915_private;
     12 
     13 int i915_save_state(struct drm_i915_private *i915);
     14 int i915_restore_state(struct drm_i915_private *i915);
     15 
     16 #endif /* __I915_SUSPEND_H__ */
     17