summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2004-09-28 16:37:03 +0000
committerJason Wright <jason@cvs.openbsd.org>2004-09-28 16:37:03 +0000
commite394444e3d65f8eacd2ae338db53f48e478804c5 (patch)
tree37af01b320f9c221a936d4b7fc9a3e0fc5e1b76a
parente89047d826b7f97551768d5ac32cbda8cb5b72b8 (diff)
debugging stuff nuke I will
-rw-r--r--sys/arch/sparc64/dev/clkbrd.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/sys/arch/sparc64/dev/clkbrd.c b/sys/arch/sparc64/dev/clkbrd.c
index 487497c86a2..2a81883b77d 100644
--- a/sys/arch/sparc64/dev/clkbrd.c
+++ b/sys/arch/sparc64/dev/clkbrd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: clkbrd.c,v 1.2 2004/09/28 14:34:58 miod Exp $ */
+/* $OpenBSD: clkbrd.c,v 1.3 2004/09/28 16:37:02 jason Exp $ */
/*
* Copyright (c) 2004 Jason L. Wright (jason@thought.net)
@@ -75,7 +75,7 @@ clkbrd_attach(parent, self, aux)
{
struct clkbrd_softc *sc = (struct clkbrd_softc *)self;
struct fhc_attach_args *fa = aux;
- int i, slots;
+ int slots;
u_int8_t r;
sc->sc_bt = fa->fa_bustag;
@@ -129,12 +129,6 @@ clkbrd_attach(parent, self, aux)
printf(": %d slots\n", slots);
- for (i = 0; i < fa->fa_nreg; i++) {
- printf(" r[%d] slot %x offset %x size %x\n",
- i, fa->fa_reg[i].fbr_slot, fa->fa_reg[i].fbr_offset,
- fa->fa_reg[i].fbr_size);
- }
-
if (sparc_led_blink)
clkbrd_led_blink(sc);
}