Module Name:    src
Committed By:   martin
Date:           Mon Dec  6 19:34:29 UTC 2021

Modified Files:
        src/sys/dev/i2c [netbsd-8]: sdtemp.c

Log Message:
Pull up following revision(s) (requested by msaitoh in ticket #1716):

        sys/dev/i2c/sdtemp.c: revision 1.41

Use aprint_debug instead of aprint_error for expected failure.


To generate a diff of this commit:
cvs rdiff -u -r1.32.8.2 -r1.32.8.3 src/sys/dev/i2c/sdtemp.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/i2c/sdtemp.c
diff -u src/sys/dev/i2c/sdtemp.c:1.32.8.2 src/sys/dev/i2c/sdtemp.c:1.32.8.3
--- src/sys/dev/i2c/sdtemp.c:1.32.8.2	Mon Jul 20 19:00:40 2020
+++ src/sys/dev/i2c/sdtemp.c	Mon Dec  6 19:34:29 2021
@@ -1,4 +1,4 @@
-/*      $NetBSD: sdtemp.c,v 1.32.8.2 2020/07/20 19:00:40 martin Exp $        */
+/*      $NetBSD: sdtemp.c,v 1.32.8.3 2021/12/06 19:34:29 martin Exp $        */
 
 /*
  * Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sdtemp.c,v 1.32.8.2 2020/07/20 19:00:40 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sdtemp.c,v 1.32.8.3 2021/12/06 19:34:29 martin Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -696,8 +696,8 @@ sdtemp_config_mcp(struct sdtemp_softc *s
 	if (rv == 0)
 		sc->sc_resolution = SDTEMP_CAP_RESOLUTION_MAX;
 	else
-		aprint_error("%s: error %d writing resolution register\n",
-		    device_xname(sc->sc_dev), rv);
+		aprint_debug_dev(sc->sc_dev,
+		    "error %d writing resolution register\n", rv);
 }
 
 static void
@@ -716,8 +716,8 @@ sdtemp_config_idt(struct sdtemp_softc *s
 	if (rv == 0)
 		sc->sc_resolution = SDTEMP_CAP_RESOLUTION_MAX;
 	else
-		aprint_error("%s: error %d writing resolution register\n",
-		    device_xname(sc->sc_dev), rv);
+		aprint_debug_dev(sc->sc_dev,
+		    "error %d writing resolution register\n", rv);
 }
 
 MODULE(MODULE_CLASS_DRIVER, sdtemp, "i2cexec,sysmon_envsys");

Reply via email to