| 1 | /* SPDX-License-Identifier: MIT */ | 
|---|
| 2 | /* | 
|---|
| 3 | * Copyright © 2020 Intel Corporation | 
|---|
| 4 | */ | 
|---|
| 5 |  | 
|---|
| 6 | #ifndef __INTEL_DISPLAY_DEBUGFS_H__ | 
|---|
| 7 | #define __INTEL_DISPLAY_DEBUGFS_H__ | 
|---|
| 8 |  | 
|---|
| 9 | struct intel_connector; | 
|---|
| 10 | struct intel_crtc; | 
|---|
| 11 | struct intel_display; | 
|---|
| 12 |  | 
|---|
| 13 | #ifdef CONFIG_DEBUG_FS | 
|---|
| 14 | void intel_display_debugfs_register(struct intel_display *display); | 
|---|
| 15 | void intel_connector_debugfs_add(struct intel_connector *connector); | 
|---|
| 16 | void intel_crtc_debugfs_add(struct intel_crtc *crtc); | 
|---|
| 17 | #else | 
|---|
| 18 | static inline void intel_display_debugfs_register(struct intel_display *display) {} | 
|---|
| 19 | static inline void intel_connector_debugfs_add(struct intel_connector *connector) {} | 
|---|
| 20 | static inline void intel_crtc_debugfs_add(struct intel_crtc *crtc) {} | 
|---|
| 21 | #endif | 
|---|
| 22 |  | 
|---|
| 23 | #endif /* __INTEL_DISPLAY_DEBUGFS_H__ */ | 
|---|
| 24 |  | 
|---|