Module Name:    src
Committed By:   jmcneill
Date:           Sun Aug 23 16:02:53 UTC 2009

Modified Files:
        src/sys/dev/isa: attimer_isa.c

Log Message:
Not much sense in printing 'AT Timer' when the 'attimer' driver attaches.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/dev/isa/attimer_isa.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/isa/attimer_isa.c
diff -u src/sys/dev/isa/attimer_isa.c:1.12 src/sys/dev/isa/attimer_isa.c:1.13
--- src/sys/dev/isa/attimer_isa.c:1.12	Tue May 12 08:44:19 2009
+++ src/sys/dev/isa/attimer_isa.c	Sun Aug 23 16:02:53 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: attimer_isa.c,v 1.12 2009/05/12 08:44:19 cegger Exp $	*/
+/*	$NetBSD: attimer_isa.c,v 1.13 2009/08/23 16:02:53 jmcneill Exp $	*/
 
 /*
  *  Copyright (c) 2005 The NetBSD Foundation.
@@ -58,7 +58,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: attimer_isa.c,v 1.12 2009/05/12 08:44:19 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: attimer_isa.c,v 1.13 2009/08/23 16:02:53 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -131,8 +131,8 @@
 	sc->sc_dev = self;
 	sc->sc_iot = ia->ia_iot;
 
-	aprint_naive(": AT Timer\n");
-	aprint_normal(": AT Timer\n");
+	aprint_naive("\n");
+	aprint_normal("\n");
 
 	sc->sc_size = 4;
 	if (bus_space_map(sc->sc_iot, IO_TIMER1, sc->sc_size, 0,

Reply via email to