Put verbose printf's in the PCI BIOS interrupt routing code under
if (bootverbose).
This commit is contained in:
parent
56144d5a4d
commit
8ff25e9763
@ -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 New Issue
Block a user