mirror of
https://github.com/encounter/flashrom.git
synced 2026-03-30 11:10:10 -07:00
e3705282c7
* make -v switch print debug messages. * do case insensitive comparison of mainboards, as wished on the mailinglist Corresponding to flashrom svn r37 and coreboot v2 svn r2146.
11 lines
166 B
C
11 lines
166 B
C
#ifndef __DEBUG_H__
|
|
#define __DEBUG_H__ 1
|
|
|
|
//#define printf_debug(x...) printf(x)
|
|
|
|
extern int verbose;
|
|
|
|
#define printf_debug(x...) { if(verbose) printf(x); }
|
|
|
|
#endif
|