Home | History | Annotate | Line # | Download | only in i915
      1 /*	$NetBSD: i915_sysfs.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_SYSFS_H__
      9 #define __I915_SYSFS_H__
     10 
     11 struct drm_i915_private;
     12 
     13 void i915_setup_sysfs(struct drm_i915_private *i915);
     14 void i915_teardown_sysfs(struct drm_i915_private *i915);
     15 
     16 #endif /* __I915_SYSFS_H__ */
     17