blob: 78bd7e4bf9ce323c8bc774724d1be049fc154035 [file] [log] [blame]
Alexander Shishkin50352fa2018-03-28 18:46:15 +03001/* SPDX-License-Identifier: GPL-2.0 */
Alexander Shishkin39f40342015-09-22 15:47:14 +03002/*
3 * Intel(R) Trace Hub driver debugging
4 *
5 * Copyright (C) 2014-2015 Intel Corporation.
Alexander Shishkin39f40342015-09-22 15:47:14 +03006 */
7
8#ifndef __INTEL_TH_DEBUG_H__
9#define __INTEL_TH_DEBUG_H__
10
11#ifdef CONFIG_INTEL_TH_DEBUG
12extern struct dentry *intel_th_dbg;
13
14void intel_th_debug_init(void);
15void intel_th_debug_done(void);
16#else
17static inline void intel_th_debug_init(void)
18{
19}
20
21static inline void intel_th_debug_done(void)
22{
23}
24#endif
25
26#endif /* __INTEL_TH_DEBUG_H__ */