i915_sysfs.h 383 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: MIT */
  2. /*
  3. * Copyright © 2019 Intel Corporation
  4. */
  5. #ifndef __I915_SYSFS_H__
  6. #define __I915_SYSFS_H__
  7. struct device;
  8. struct drm_i915_private;
  9. struct drm_i915_private *kdev_minor_to_i915(struct device *kdev);
  10. void i915_setup_sysfs(struct drm_i915_private *i915);
  11. void i915_teardown_sysfs(struct drm_i915_private *i915);
  12. #endif /* __I915_SYSFS_H__ */