freewtp/kmod/config.h

14 lines
236 B
C
Raw Permalink Normal View History

2016-02-05 17:38:49 +01:00
#ifndef __KMOD_CONFIG_HEADER__
#define __KMOD_CONFIG_HEADER__
// #define DEBUGKMOD 1
2016-02-05 17:38:49 +01:00
#ifdef DEBUGKMOD
#define TRACEKMOD(s, args...) printk(s, ##args)
#else
#define TRACEKMOD(s, args...)
#endif
#endif /* __KMOD_CONFIG_HEADER__ */