root/drivers/hwtracing/intel_th/debug.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. intel_th_debug_init
  2. intel_th_debug_done

   1 /* SPDX-License-Identifier: GPL-2.0 */
   2 /*
   3  * Intel(R) Trace Hub driver debugging
   4  *
   5  * Copyright (C) 2014-2015 Intel Corporation.
   6  */
   7 
   8 #ifndef __INTEL_TH_DEBUG_H__
   9 #define __INTEL_TH_DEBUG_H__
  10 
  11 #ifdef CONFIG_INTEL_TH_DEBUG
  12 extern struct dentry *intel_th_dbg;
  13 
  14 void intel_th_debug_init(void);
  15 void intel_th_debug_done(void);
  16 #else
  17 static inline void intel_th_debug_init(void)
  18 {
  19 }
  20 
  21 static inline void intel_th_debug_done(void)
  22 {
  23 }
  24 #endif
  25 
  26 #endif /* __INTEL_TH_DEBUG_H__ */

/* [<][>][^][v][top][bottom][index][help] */