Add the bytes field in the mptp_dest structure.
[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