mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 07:02:34 +02:00

* 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
|