Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/hp300/dev Service mode switch should not be treated...



details:   https://anonhg.NetBSD.org/src/rev/8bd2442b0f34
branches:  trunk
changeset: 372429:8bd2442b0f34
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Fri Nov 25 13:12:02 2022 +0000

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

Use aprint_normal(9) to avoid confusing dmesg.

diffstat:

 sys/arch/hp300/dev/frodo.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 9ee05dec6a15 -r 8bd2442b0f34 sys/arch/hp300/dev/frodo.c
--- a/sys/arch/hp300/dev/frodo.c        Fri Nov 25 13:06:27 2022 +0000
+++ b/sys/arch/hp300/dev/frodo.c        Fri Nov 25 13:12:02 2022 +0000
@@ -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 @@
        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 */



Home | Main Index | Thread Index | Old Index