root/drivers/gpu/drm/i915/i915_debugfs.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. i915_debugfs_register
  2. i915_debugfs_connector_add

   1 /* SPDX-License-Identifier: MIT */
   2 /*
   3  * Copyright © 2019 Intel Corporation
   4  */
   5 
   6 #ifndef __I915_DEBUGFS_H__
   7 #define __I915_DEBUGFS_H__
   8 
   9 struct drm_i915_private;
  10 struct drm_connector;
  11 
  12 #ifdef CONFIG_DEBUG_FS
  13 int i915_debugfs_register(struct drm_i915_private *dev_priv);
  14 int i915_debugfs_connector_add(struct drm_connector *connector);
  15 #else
  16 static inline int i915_debugfs_register(struct drm_i915_private *dev_priv) { return 0; }
  17 static inline int i915_debugfs_connector_add(struct drm_connector *connector) { return 0; }
  18 #endif
  19 
  20 #endif /* __I915_DEBUGFS_H__ */

/* [<][>][^][v][top][bottom][index][help] */