mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Put verbose printf's in the PCI BIOS interrupt routing code under
if (bootverbose).
This commit is contained in:
parent
56144d5a4d
commit
8ff25e9763
3 changed files with 12 additions and 3 deletions
|
|
@ -51,7 +51,10 @@
|
|||
|
||||
#include "pcib_if.h"
|
||||
|
||||
#define PRVERB(a) printf a
|
||||
#define PRVERB(a) do { \
|
||||
if (bootverbose) \
|
||||
printf a ; \
|
||||
} while(0)
|
||||
|
||||
static int cfgmech;
|
||||
static int devmax;
|
||||
|
|
|
|||
|
|
@ -51,7 +51,10 @@
|
|||
|
||||
#include "pcib_if.h"
|
||||
|
||||
#define PRVERB(a) printf a
|
||||
#define PRVERB(a) do { \
|
||||
if (bootverbose) \
|
||||
printf a ; \
|
||||
} while(0)
|
||||
|
||||
static int cfgmech;
|
||||
static int devmax;
|
||||
|
|
|
|||
|
|
@ -51,7 +51,10 @@
|
|||
|
||||
#include "pcib_if.h"
|
||||
|
||||
#define PRVERB(a) printf a
|
||||
#define PRVERB(a) do { \
|
||||
if (bootverbose) \
|
||||
printf a ; \
|
||||
} while(0)
|
||||
|
||||
static int cfgmech;
|
||||
static int devmax;
|
||||
|
|
|
|||
Loading…
Reference in a new issue