Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 /*
0003  * Copyright © 2021 Intel Corporation
0004  */
0005 
0006 #ifndef __INTEL_PXP_DEBUGFS_H__
0007 #define __INTEL_PXP_DEBUGFS_H__
0008 
0009 struct intel_pxp;
0010 struct dentry;
0011 
0012 #ifdef CONFIG_DRM_I915_PXP
0013 void intel_pxp_debugfs_register(struct intel_pxp *pxp, struct dentry *root);
0014 #else
0015 static inline void
0016 intel_pxp_debugfs_register(struct intel_pxp *pxp, struct dentry *root)
0017 {
0018 }
0019 #endif
0020 
0021 #endif /* __INTEL_PXP_DEBUGFS_H__ */