1390cf1b2SDaniele Ceraolo Spurio /* SPDX-License-Identifier: MIT */
2390cf1b2SDaniele Ceraolo Spurio /*
3390cf1b2SDaniele Ceraolo Spurio  * Copyright © 2021 Intel Corporation
4390cf1b2SDaniele Ceraolo Spurio  */
5390cf1b2SDaniele Ceraolo Spurio 
6390cf1b2SDaniele Ceraolo Spurio #ifndef __INTEL_PXP_DEBUGFS_H__
7390cf1b2SDaniele Ceraolo Spurio #define __INTEL_PXP_DEBUGFS_H__
8390cf1b2SDaniele Ceraolo Spurio 
9390cf1b2SDaniele Ceraolo Spurio struct intel_pxp;
10390cf1b2SDaniele Ceraolo Spurio struct dentry;
11390cf1b2SDaniele Ceraolo Spurio 
12390cf1b2SDaniele Ceraolo Spurio #ifdef CONFIG_DRM_I915_PXP
13*f67986b0SAlan Previn void intel_pxp_debugfs_register(struct intel_pxp *pxp);
14390cf1b2SDaniele Ceraolo Spurio #else
15390cf1b2SDaniele Ceraolo Spurio static inline void
intel_pxp_debugfs_register(struct intel_pxp * pxp)16*f67986b0SAlan Previn intel_pxp_debugfs_register(struct intel_pxp *pxp)
17390cf1b2SDaniele Ceraolo Spurio {
18390cf1b2SDaniele Ceraolo Spurio }
19390cf1b2SDaniele Ceraolo Spurio #endif
20390cf1b2SDaniele Ceraolo Spurio 
21390cf1b2SDaniele Ceraolo Spurio #endif /* __INTEL_PXP_DEBUGFS_H__ */
22