1 /* SPDX-License-Identifier: MIT */
3 * Copyright © 2020 Intel Corporation
6 #ifndef __INTEL_DISPLAY_DEBUGFS_H__
7 #define __INTEL_DISPLAY_DEBUGFS_H__
9 struct drm_i915_private;
10 struct intel_connector;
13 #ifdef CONFIG_DEBUG_FS
14 void intel_display_debugfs_register(struct drm_i915_private *i915);
15 void intel_connector_debugfs_add(struct intel_connector *connector);
16 void intel_crtc_debugfs_add(struct intel_crtc *crtc);
18 static inline void intel_display_debugfs_register(struct drm_i915_private *i915) {}
19 static inline void intel_connector_debugfs_add(struct intel_connector *connector) {}
20 static inline void intel_crtc_debugfs_add(struct intel_crtc *crtc) {}
23 #endif /* __INTEL_DISPLAY_DEBUGFS_H__ */