From 6212b9963b5d9b1182d799bf5f76ca6a2daae5cf Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sat, 16 Jun 2012 04:34:46 +0000 Subject: [PATCH] Throw this debug behind bootverbose. The information isn't all that exciting once the initial board bring up is over. --- sys/arm/at91/at91_pio.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys/arm/at91/at91_pio.c b/sys/arm/at91/at91_pio.c index eabd11a37f06..ae5f91e78287 100644 --- a/sys/arm/at91/at91_pio.c +++ b/sys/arm/at91/at91_pio.c @@ -143,9 +143,10 @@ at91_pio_attach(device_t dev) if (err) goto out; - device_printf(dev, "ABSR: %#x OSR: %#x PSR:%#x ODSR: %#x\n", - RD4(sc, PIO_ABSR), RD4(sc, PIO_OSR), RD4(sc, PIO_PSR), - RD4(sc, PIO_ODSR)); + if (bootverbose) + device_printf(dev, "ABSR: %#x OSR: %#x PSR:%#x ODSR: %#x\n", + RD4(sc, PIO_ABSR), RD4(sc, PIO_OSR), RD4(sc, PIO_PSR), + RD4(sc, PIO_ODSR)); AT91_PIO_LOCK_INIT(sc); /*