mlog_internal.h 233 B

1234567891011121314
  1. #ifndef _MLOG_INTERNAL_H
  2. #define _MLOG_INTERNAL_H
  3. #include <linux/printk.h>
  4. #define MLOG_DEBUG
  5. #ifdef MLOG_DEBUG
  6. #define MLOG_PRINTK(args...) pr_debug(args)
  7. #else
  8. #define MLOG_PRINTK(args...) do { } while (0)
  9. #endif
  10. #endif