Module Name:    src
Committed By:   tsutsui
Date:           Fri Nov 25 13:12:02 UTC 2022

Modified Files:
        src/sys/arch/hp300/dev: frodo.c

Log Message:
Service mode switch should not be treated as an error.

Use aprint_normal(9) to avoid confusing dmesg.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/hp300/dev/frodo.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/arch/hp300/dev/frodo.c
diff -u src/sys/arch/hp300/dev/frodo.c:1.34 src/sys/arch/hp300/dev/frodo.c:1.35
--- src/sys/arch/hp300/dev/frodo.c:1.34	Sat Aug  7 16:18:53 2021
+++ src/sys/arch/hp300/dev/frodo.c	Fri Nov 25 13:12:02 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: frodo.c,v 1.34 2021/08/07 16:18:53 thorpej Exp $	*/
+/*	$NetBSD: frodo.c,v 1.35 2022/11/25 13:12:02 tsutsui Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998, 1999 The NetBSD Foundation, Inc.
@@ -60,7 +60,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: frodo.c,v 1.34 2021/08/07 16:18:53 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: frodo.c,v 1.35 2022/11/25 13:12:02 tsutsui Exp $");
 
 #define	_HP300_INTR_H_PRIVATE
 
@@ -155,7 +155,7 @@ frodoattach(device_t parent, device_t se
 	sc->sc_ipl = ia->ia_ipl;
 
 	if ((FRODO_READ(sc, FRODO_IISR) & FRODO_IISR_SERVICE) == 0)
-		aprint_error(": service mode enabled");
+		aprint_normal(": service mode enabled");
 	aprint_normal("\n");
 
 	/* Initialize bus_space_tag_t for frodo */

Reply via email to