|
@@ -38,11 +38,7 @@
|
|
|
* Macros use for debugging the driver.
|
|
|
*/
|
|
|
|
|
|
-#if DEBUG_QLA2100
|
|
|
-#define DEBUG(x) do {x;} while (0)
|
|
|
-#else
|
|
|
-#define DEBUG(x) do {} while (0)
|
|
|
-#endif
|
|
|
+#define DEBUG(x) do { if (extended_error_logging) { x; } } while (0)
|
|
|
|
|
|
#if defined(QL_DEBUG_LEVEL_1)
|
|
|
#define DEBUG1(x) do {x;} while (0)
|
|
@@ -50,27 +46,18 @@
|
|
|
#define DEBUG1(x) do {} while (0)
|
|
|
#endif
|
|
|
|
|
|
-#if defined(QL_DEBUG_LEVEL_2)
|
|
|
-#define DEBUG2(x) do {x;} while (0)
|
|
|
-#define DEBUG2_3(x) do {x;} while (0)
|
|
|
-#define DEBUG2_3_11(x) do {x;} while (0)
|
|
|
-#define DEBUG2_9_10(x) do {x;} while (0)
|
|
|
-#define DEBUG2_11(x) do {x;} while (0)
|
|
|
-#define DEBUG2_13(x) do {x;} while (0)
|
|
|
-#else
|
|
|
-#define DEBUG2(x) do {} while (0)
|
|
|
-#endif
|
|
|
+#define DEBUG2(x) do { if (extended_error_logging) { x; } } while (0)
|
|
|
+#define DEBUG2_3(x) do { if (extended_error_logging) { x; } } while (0)
|
|
|
+#define DEBUG2_3_11(x) do { if (extended_error_logging) { x; } } while (0)
|
|
|
+#define DEBUG2_9_10(x) do { if (extended_error_logging) { x; } } while (0)
|
|
|
+#define DEBUG2_11(x) do { if (extended_error_logging) { x; } } while (0)
|
|
|
+#define DEBUG2_13(x) do { if (extended_error_logging) { x; } } while (0)
|
|
|
|
|
|
#if defined(QL_DEBUG_LEVEL_3)
|
|
|
#define DEBUG3(x) do {x;} while (0)
|
|
|
-#define DEBUG2_3(x) do {x;} while (0)
|
|
|
-#define DEBUG2_3_11(x) do {x;} while (0)
|
|
|
#define DEBUG3_11(x) do {x;} while (0)
|
|
|
#else
|
|
|
#define DEBUG3(x) do {} while (0)
|
|
|
- #if !defined(QL_DEBUG_LEVEL_2)
|
|
|
- #define DEBUG2_3(x) do {} while (0)
|
|
|
- #endif
|
|
|
#endif
|
|
|
|
|
|
#if defined(QL_DEBUG_LEVEL_4)
|
|
@@ -94,20 +81,15 @@
|
|
|
#if defined(QL_DEBUG_LEVEL_9)
|
|
|
#define DEBUG9(x) do {x;} while (0)
|
|
|
#define DEBUG9_10(x) do {x;} while (0)
|
|
|
-#define DEBUG2_9_10(x) do {x;} while (0)
|
|
|
#else
|
|
|
#define DEBUG9(x) do {} while (0)
|
|
|
#endif
|
|
|
|
|
|
#if defined(QL_DEBUG_LEVEL_10)
|
|
|
#define DEBUG10(x) do {x;} while (0)
|
|
|
-#define DEBUG2_9_10(x) do {x;} while (0)
|
|
|
#define DEBUG9_10(x) do {x;} while (0)
|
|
|
#else
|
|
|
#define DEBUG10(x) do {} while (0)
|
|
|
- #if !defined(DEBUG2_9_10)
|
|
|
- #define DEBUG2_9_10(x) do {} while (0)
|
|
|
- #endif
|
|
|
#if !defined(DEBUG9_10)
|
|
|
#define DEBUG9_10(x) do {} while (0)
|
|
|
#endif
|
|
@@ -115,23 +97,11 @@
|
|
|
|
|
|
#if defined(QL_DEBUG_LEVEL_11)
|
|
|
#define DEBUG11(x) do{x;} while(0)
|
|
|
-#if !defined(DEBUG2_11)
|
|
|
-#define DEBUG2_11(x) do{x;} while(0)
|
|
|
-#endif
|
|
|
-#if !defined(DEBUG2_3_11)
|
|
|
-#define DEBUG2_3_11(x) do{x;} while(0)
|
|
|
-#endif
|
|
|
#if !defined(DEBUG3_11)
|
|
|
#define DEBUG3_11(x) do{x;} while(0)
|
|
|
#endif
|
|
|
#else
|
|
|
#define DEBUG11(x) do{} while(0)
|
|
|
- #if !defined(QL_DEBUG_LEVEL_2)
|
|
|
- #define DEBUG2_11(x) do{} while(0)
|
|
|
- #if !defined(QL_DEBUG_LEVEL_3)
|
|
|
- #define DEBUG2_3_11(x) do{} while(0)
|
|
|
- #endif
|
|
|
- #endif
|
|
|
#if !defined(QL_DEBUG_LEVEL_3)
|
|
|
#define DEBUG3_11(x) do{} while(0)
|
|
|
#endif
|
|
@@ -145,14 +115,8 @@
|
|
|
|
|
|
#if defined(QL_DEBUG_LEVEL_13)
|
|
|
#define DEBUG13(x) do {x;} while (0)
|
|
|
-#if !defined(DEBUG2_13)
|
|
|
-#define DEBUG2_13(x) do {x;} while(0)
|
|
|
-#endif
|
|
|
#else
|
|
|
#define DEBUG13(x) do {} while (0)
|
|
|
-#if !defined(QL_DEBUG_LEVEL_2)
|
|
|
-#define DEBUG2_13(x) do {} while(0)
|
|
|
-#endif
|
|
|
#endif
|
|
|
|
|
|
#if defined(QL_DEBUG_LEVEL_14)
|