Module Name:    src
Committed By:   njoly
Date:           Tue Nov 24 15:51:40 UTC 2009

Modified Files:
        src/sys/dev/pci: mpt_pci.c

Log Message:
Do not use aprint_normal for error messages.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/pci/mpt_pci.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/pci/mpt_pci.c
diff -u src/sys/dev/pci/mpt_pci.c:1.19 src/sys/dev/pci/mpt_pci.c:1.20
--- src/sys/dev/pci/mpt_pci.c:1.19	Tue May 12 08:23:01 2009
+++ src/sys/dev/pci/mpt_pci.c	Tue Nov 24 15:51:39 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: mpt_pci.c,v 1.19 2009/05/12 08:23:01 cegger Exp $	*/
+/*	$NetBSD: mpt_pci.c,v 1.20 2009/11/24 15:51:39 njoly Exp $	*/
 
 /*
  * Copyright (c) 2003 Wasabi Systems, Inc.
@@ -46,7 +46,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mpt_pci.c,v 1.19 2009/05/12 08:23:01 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mpt_pci.c,v 1.20 2009/11/24 15:51:39 njoly Exp $");
 
 #include <dev/ic/mpt.h>			/* pulls in all headers */
 
@@ -210,8 +210,8 @@
 	if (psc->sc_ih == NULL) {
 		aprint_error_dev(&mpt->sc_dev, "unable to establish interrupt");
 		if (intrstr != NULL)
-			aprint_normal(" at %s", intrstr);
-		aprint_normal("\n");
+			aprint_error(" at %s", intrstr);
+		aprint_error("\n");
 		return;
 	}
 	aprint_normal_dev(&mpt->sc_dev, "interrupting at %s\n",

Reply via email to