Module Name:    src
Committed By:   dyoung
Date:           Wed Apr 21 21:49:53 UTC 2010

Modified Files:
        src/sys/dev/ic: spic.c

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


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/ic/spic.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/ic/spic.c
diff -u src/sys/dev/ic/spic.c:1.17 src/sys/dev/ic/spic.c:1.18
--- src/sys/dev/ic/spic.c:1.17	Wed Feb 24 22:37:58 2010
+++ src/sys/dev/ic/spic.c	Wed Apr 21 21:49:53 2010
@@ -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);

Reply via email to