projects
/
swifty.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix the swift unit test. They are now working over MPTP.
[swifty.git]
/
src
/
kernel
/
debug.h
1
#ifndef _MPTP_DEBUG_H
2
#define _MPTP_DEBUG_H
3
4
#define log_error(...) printk(KERN_ERR "MPTP-ERROR : " __VA_ARGS__)
5
6
#if 0
7
8
#define log_debug(...) printk(KERN_DEBUG "MPTP-DEBUG : " __VA_ARGS__)
9
10
#else
11
12
#define log_debug(...)
13
14
#endif
15
16
#endif