debug.h 471 B

123456789101112131415161718192021222324252627
  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. #ifndef __INTEL_TH_DEBUG_H__
  8. #define __INTEL_TH_DEBUG_H__
  9. #ifdef CONFIG_INTEL_TH_DEBUG
  10. extern struct dentry *intel_th_dbg;
  11. void intel_th_debug_init(void);
  12. void intel_th_debug_done(void);
  13. #else
  14. static inline void intel_th_debug_init(void)
  15. {
  16. }
  17. static inline void intel_th_debug_done(void)
  18. {
  19. }
  20. #endif
  21. #endif /* __INTEL_TH_DEBUG_H__ */