Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/sbus Remove some diagnostic/debug messages.



details:   https://anonhg.NetBSD.org/src/rev/bd5cc88e4f65
branches:  trunk
changeset: 341965:bd5cc88e4f65
user:      martin <martin%NetBSD.org@localhost>
date:      Tue Dec 01 08:22:30 2015 +0000

description:
Remove some diagnostic/debug messages.

diffstat:

 sys/dev/sbus/stp4020.c |  11 +++--------
 1 files changed, 3 insertions(+), 8 deletions(-)

diffs (51 lines):

diff -r fc272afaaeaa -r bd5cc88e4f65 sys/dev/sbus/stp4020.c
--- a/sys/dev/sbus/stp4020.c    Tue Dec 01 07:26:08 2015 +0000
+++ b/sys/dev/sbus/stp4020.c    Tue Dec 01 08:22:30 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: stp4020.c,v 1.68 2015/10/04 08:20:24 joerg Exp $ */
+/*     $NetBSD: stp4020.c,v 1.69 2015/12/01 08:22:30 martin Exp $ */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: stp4020.c,v 1.68 2015/10/04 08:20:24 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: stp4020.c,v 1.69 2015/12/01 08:22:30 martin Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -632,7 +632,7 @@
 #ifndef SUN4U
        int s;
 #endif
-       int i, r = 0, cd_change = 0;
+       int i, r = 0;
 
 
 #ifndef SUN4U
@@ -666,7 +666,6 @@
                        /*
                         * Card status change detect
                         */
-                       cd_change = 1;
                        r = 1;
                        if ((v & (STP4020_ISR0_CD1ST|STP4020_ISR0_CD2ST)) == (STP4020_ISR0_CD1ST|STP4020_ISR0_CD2ST)){
                                if ((h->flags & STP4020_SOCKET_BUSY) == 0) {
@@ -716,15 +715,11 @@
                /* informational messages */
                if ((v & STP4020_ISR0_BVD1CHG) != 0) {
                        /* ignore if this is caused by insert or removal */
-                       if (!cd_change)
-                               printf("stp4020[%d]: Battery change 1\n", h->sock);
                        r = 1;
                }
 
                if ((v & STP4020_ISR0_BVD2CHG) != 0) {
                        /* ignore if this is caused by insert or removal */
-                       if (!cd_change)
-                               printf("stp4020[%d]: Battery change 2\n", h->sock);
                        r = 1;
                }
 



Home | Main Index | Thread Index | Old Index