Module Name:    src
Committed By:   jmcneill
Date:           Sun Aug 23 15:56:07 UTC 2009

Modified Files:
        src/sys/dev: midi.c

Log Message:
I'm not so sure this is actually CPU-intensive in 2009, so don't print it.


To generate a diff of this commit:
cvs rdiff -u -r1.69 -r1.70 src/sys/dev/midi.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/midi.c
diff -u src/sys/dev/midi.c:1.69 src/sys/dev/midi.c:1.70
--- src/sys/dev/midi.c:1.69	Tue Apr  7 17:54:58 2009
+++ src/sys/dev/midi.c	Sun Aug 23 15:56:07 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: midi.c,v 1.69 2009/04/07 17:54:58 dyoung Exp $	*/
+/*	$NetBSD: midi.c,v 1.70 2009/08/23 15:56:07 jmcneill Exp $	*/
 
 /*
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: midi.c,v 1.69 2009/04/07 17:54:58 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: midi.c,v 1.70 2009/08/23 15:56:07 jmcneill Exp $");
 
 #include "midi.h"
 #include "sequencer.h"
@@ -275,9 +275,7 @@
 			device_xname(sc->dev), "rcv incomplete msgs");
 	}
 	
-	aprint_normal(": %s%s\n", mi.name,
-	    (sc->props & (MIDI_PROP_OUT_INTR|MIDI_PROP_NO_OUTPUT)) ?
-	    "" : " (CPU-intensive output)");
+	aprint_normal(": %s\n", mi.name);
 }
 
 void midi_register_hw_if_ext(struct midi_hw_if_ext *exthw) {

Reply via email to