Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic Don't printf bus_space_tag_t's in a MI driver.



details:   https://anonhg.NetBSD.org/src/rev/82548b2a08f1
branches:  trunk
changeset: 754151:82548b2a08f1
user:      dyoung <dyoung%NetBSD.org@localhost>
date:      Wed Apr 21 21:49:53 2010 +0000

description:
Don't printf bus_space_tag_t's in a MI driver.

diffstat:

 sys/dev/ic/spic.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 91df5f2c8799 -r 82548b2a08f1 sys/dev/ic/spic.c
--- a/sys/dev/ic/spic.c Wed Apr 21 21:38:47 2010 +0000
+++ b/sys/dev/ic/spic.c Wed Apr 21 21:49:53 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: spic.c,v 1.17 2010/02/24 22:37:58 dyoung Exp $ */
+/*     $NetBSD: spic.c,v 1.18 2010/04/21 21:49:53 dyoung Exp $ */
 
 /*
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -49,7 +49,7 @@
 
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: spic.c,v 1.17 2010/02/24 22:37:58 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: spic.c,v 1.18 2010/04/21 21:49:53 dyoung Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -257,7 +257,7 @@
 
 #ifdef SPIC_DEBUG
        if (spicdebug)
-               printf("spic_attach %x %x\n", sc->sc_iot, (uint)sc->sc_ioh);
+               printf("spic_attach %x\n", (uint)sc->sc_ioh);
 #endif
 
        callout_init(&sc->sc_poll, 0);



Home | Main Index | Thread Index | Old Index