Searched refs:debug_print (Results 1 – 2 of 2) sorted by relevance
58 static int __initdata debug_print; variable59 #define Dprintk(x...) do { if (debug_print) pr_debug(x); } while (0)82 if (debug_print) { in x86_get_mtrr_mem_range()115 if (debug_print) { in x86_get_mtrr_mem_range()127 if (debug_print) { in x86_get_mtrr_mem_range()169 debug_print = 1; in mtrr_cleanup_debug_setup()270 if (debug_print) { in range_to_mtrr()767 if (debug_print) { in mtrr_cleanup()
34 #define DEBUG_PRINT_L1(...) debug_print(DEBUG_LEVEL_1_BIT, __VA_ARGS__)35 #define DEBUG_PRINT_L2(...) debug_print(DEBUG_LEVEL_2_BIT, __VA_ARGS__)36 #define DEBUG_PRINT_L3(...) debug_print(DEBUG_LEVEL_3_BIT, __VA_ARGS__)37 #define DEBUG_PRINT_L4(...) debug_print(DEBUG_LEVEL_4_BIT, __VA_ARGS__)38 #define DEBUG_PRINT_T(...) debug_print(DEBUG_TIMING_BIT, __VA_ARGS__)40 static void debug_print(int level, const char *s, ...) in debug_print() function