13 #ifndef NDEBUG_USBPORT_MINIPORT
15 #define DPRINT_MINIPORT(fmt, ...) do { \
16 if (DbgPrint("(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)) \
17 DbgPrint("(%s:%d) DbgPrint() failed!\n", __RELFILE__, __LINE__); \
23 #define DPRINT_MINIPORT __noop
25 #define DPRINT_MINIPORT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
30 #ifndef NDEBUG_USBPORT_CORE
32 #define DPRINT_CORE(fmt, ...) do { \
33 if (DbgPrint("(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)) \
34 DbgPrint("(%s:%d) DbgPrint() failed!\n", __RELFILE__, __LINE__); \
40 #define DPRINT_CORE __noop
42 #define DPRINT_CORE(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
47 #ifndef NDEBUG_USBPORT_URB
49 #define DPRINT_URB(fmt, ...) do { \
50 if (DbgPrint("(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)) \
51 DbgPrint("(%s:%d) DbgPrint() failed!\n", __RELFILE__, __LINE__); \
57 #define DPRINT_URB __noop
59 #define DPRINT_URB(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
64 #ifndef NDEBUG_USBPORT_INTERRUPT
66 #define DPRINT_INT(fmt, ...) do { \
67 if (DbgPrint("(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)) \
68 DbgPrint("(%s:%d) DbgPrint() failed!\n", __RELFILE__, __LINE__); \
74 #define DPRINT_INT __noop
76 #define DPRINT_INT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
81 #ifndef NDEBUG_USBPORT_TIMER
83 #define DPRINT_TIMER(fmt, ...) do { \
84 if (DbgPrint("(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)) \
85 DbgPrint("(%s:%d) DbgPrint() failed!\n", __RELFILE__, __LINE__); \
91 #define DPRINT_TIMER __noop
93 #define DPRINT_TIMER(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
98 #ifndef NDEBUG_USBPORT_QUEUE
100 #define DPRINT_QUEUE(fmt, ...) do { \
101 if (DbgPrint("(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)) \
102 DbgPrint("(%s:%d) DbgPrint() failed!\n", __RELFILE__, __LINE__); \
108 #define DPRINT_QUEUE __noop
110 #define DPRINT_QUEUE(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
115 #ifndef NDEBUG_USBPORT_USB2
117 #define DPRINT_USB2(fmt, ...) do { \
118 if (DbgPrint("(%s:%d) " fmt, __RELFILE__, __LINE__, ##__VA_ARGS__)) \
119 DbgPrint("(%s:%d) DbgPrint() failed!\n", __RELFILE__, __LINE__); \
125 #define DPRINT_USB2 __noop
127 #define DPRINT_USB2(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
135 #define DPRINT_MINIPORT __noop
136 #define DPRINT_CORE __noop
137 #define DPRINT_URB __noop
138 #define DPRINT_INT __noop
139 #define DPRINT_TIMER __noop
140 #define DPRINT_QUEUE __noop
141 #define DPRINT_USB2 __noop
143 #define DPRINT_MINIPORT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
144 #define DPRINT_CORE(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
145 #define DPRINT_URB(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
146 #define DPRINT_INT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
147 #define DPRINT_TIMER(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
148 #define DPRINT_QUEUE(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
149 #define DPRINT_USB2(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)