• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
i915_debugfs_register(struct drm_i915_private * dev_priv)16 static inline int i915_debugfs_register(struct drm_i915_private *dev_priv) { return 0; }
i915_debugfs_connector_add(struct drm_connector * connector)17 static inline int i915_debugfs_connector_add(struct drm_connector *connector) { return 0; }
18 #endif
19 
20 #endif /* __I915_DEBUGFS_H__ */
21