brintos

brintos / linux-shallow public Read only

0
0
Text · 732 B · e1f479b Raw
24 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2020 Intel Corporation4 */5 6#ifndef __INTEL_DISPLAY_DEBUGFS_H__7#define __INTEL_DISPLAY_DEBUGFS_H__8 9struct drm_i915_private;10struct intel_connector;11struct intel_crtc;12 13#ifdef CONFIG_DEBUG_FS14void intel_display_debugfs_register(struct drm_i915_private *i915);15void intel_connector_debugfs_add(struct intel_connector *connector);16void intel_crtc_debugfs_add(struct intel_crtc *crtc);17#else18static inline void intel_display_debugfs_register(struct drm_i915_private *i915) {}19static inline void intel_connector_debugfs_add(struct intel_connector *connector) {}20static inline void intel_crtc_debugfs_add(struct intel_crtc *crtc) {}21#endif22 23#endif /* __INTEL_DISPLAY_DEBUGFS_H__ */24