Put verbose printf's in the PCI BIOS interrupt routing code under

if (bootverbose).
This commit is contained in:
John Baldwin 2002-09-23 18:13:42 +00:00
parent 56144d5a4d
commit 8ff25e9763
3 changed files with 12 additions and 3 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;