Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/macppc/macppc downgrade some debug spam to aprint_d...



details:   https://anonhg.NetBSD.org/src/rev/8a818f43c5ce
branches:  trunk
changeset: 826447:8a818f43c5ce
user:      macallan <macallan%NetBSD.org@localhost>
date:      Wed Sep 06 03:10:09 2017 +0000

description:
downgrade some debug spam to aprint_debug() where it belongs

diffstat:

 sys/arch/macppc/macppc/machdep.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (36 lines):

diff -r 43bfd84133fa -r 8a818f43c5ce sys/arch/macppc/macppc/machdep.c
--- a/sys/arch/macppc/macppc/machdep.c  Tue Sep 05 18:30:46 2017 +0000
+++ b/sys/arch/macppc/macppc/machdep.c  Wed Sep 06 03:10:09 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.166 2017/08/11 22:55:49 macallan Exp $   */
+/*     $NetBSD: machdep.c,v 1.167 2017/09/06 03:10:09 macallan Exp $   */
 
 /*
  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.166 2017/08/11 22:55:49 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.167 2017/09/06 03:10:09 macallan Exp $");
 
 #include "opt_compat_netbsd.h"
 #include "opt_ddb.h"
@@ -331,14 +331,14 @@
                        prop_dictionary_set_uint32(dict, "address", fbaddr);
        }
        if (of_to_dataprop(dict, node, "EDID", "EDID")) {
-               aprint_verbose("found EDID property...\n");
+               aprint_debug("found EDID property...\n");
        } else if (of_to_dataprop(dict, node, "EDID,A", "EDID")) {
-               aprint_verbose("found EDID,A\n");
+               aprint_debug("found EDID,A\n");
        } else if (of_to_dataprop(dict, node, "EDID,B", "EDID")) {
                memset(name, 0, sizeof(name));
                OF_getprop(node, "name", name, sizeof(name));
                if (strcmp(name, "NVDA,NVMac") == 0) {
-                       aprint_verbose("found EDID,B on nvidia - assuming digital output\n");
+                       aprint_debug("found EDID,B on nvidia - assuming digital output\n");
                        prop_dictionary_set_bool(dict, "no_palette_control", 1);
                        have_palette = 0;
                }



Home | Main Index | Thread Index | Old Index