diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-06-25 23:09:56 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-06-25 23:09:56 +0000 |
commit | 95a3a0dd2d1064a49f639297536927d01e0074b3 (patch) | |
tree | f2779854f99de2ffdc5580bd9f0ddd741874dd8b /sys/arch/powerpc/pci | |
parent | 3a0fe06241908f1f8d9fd8a3f7ae57fd6ae286ae (diff) |
add MACOBIOVERBOSE as per discussion w/ dale
Diffstat (limited to 'sys/arch/powerpc/pci')
-rw-r--r-- | sys/arch/powerpc/pci/macobio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/powerpc/pci/macobio.c b/sys/arch/powerpc/pci/macobio.c index 87c38f74b31..6ceaee0e2dc 100644 --- a/sys/arch/powerpc/pci/macobio.c +++ b/sys/arch/powerpc/pci/macobio.c @@ -204,10 +204,9 @@ macobio_print(aux, macobio) void *aux; const char *macobio; { +#ifdef MACOBIOVERBOSE struct confargs *ca = aux; -#if 0 -/* no reason to clutter the screen with unneccessary printfs */ if (macobio) printf("%s at %s", ca->ca_name, macobio); @@ -215,8 +214,9 @@ macobio_print(aux, macobio) printf(" offset 0x%x", ca->ca_reg[0]); return UNCONF; -#endif +#else return QUIET; +#endif } typedef int mac_intr_handle_t; |