* https://openbios.org/roundup/linuxbios/issue96 - SST_49LF040B flash support for...
[coreboot.git] / util / flashrom / debug.h
1 #ifndef __DEBUG_H__
2 #define __DEBUG_H__ 1
3
4 //#define printf_debug(x...) printf(x)
5
6 extern int verbose;
7
8 #define printf_debug(x...) { if(verbose) printf(x); }
9
10 #endif