Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * Intel(R) Trace Hub driver debugging
0004  *
0005  * Copyright (C) 2014-2015 Intel Corporation.
0006  */
0007 
0008 #ifndef __INTEL_TH_DEBUG_H__
0009 #define __INTEL_TH_DEBUG_H__
0010 
0011 #ifdef CONFIG_INTEL_TH_DEBUG
0012 extern struct dentry *intel_th_dbg;
0013 
0014 void intel_th_debug_init(void);
0015 void intel_th_debug_done(void);
0016 #else
0017 static inline void intel_th_debug_init(void)
0018 {
0019 }
0020 
0021 static inline void intel_th_debug_done(void)
0022 {
0023 }
0024 #endif
0025 
0026 #endif /* __INTEL_TH_DEBUG_H__ */