Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/fdt In fdtbus_print(), aprint_normal the path to the...



details:   https://anonhg.NetBSD.org/src/rev/e36c03c5663a
branches:  trunk
changeset: 320031:e36c03c5663a
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Wed Jun 20 05:59:17 2018 +0000

description:
In fdtbus_print(), aprint_normal the path to the device (rather than
aprint_debug).  This info is every bit as useful as, say, PCI device
locations.

diffstat:

 sys/dev/fdt/fdtbus.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 0627adf54123 -r e36c03c5663a sys/dev/fdt/fdtbus.c
--- a/sys/dev/fdt/fdtbus.c      Wed Jun 20 05:53:19 2018 +0000
+++ b/sys/dev/fdt/fdtbus.c      Wed Jun 20 05:59:17 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fdtbus.c,v 1.17 2018/06/12 00:19:17 jmcneill Exp $ */
+/* $NetBSD: fdtbus.c,v 1.18 2018/06/20 05:59:17 thorpej Exp $ */
 
 /*-
  * Copyright (c) 2015 Jared D. McNeill <jmcneill%invisible.ca@localhost>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fdtbus.c,v 1.17 2018/06/12 00:19:17 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fdtbus.c,v 1.18 2018/06/20 05:59:17 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -336,7 +336,7 @@
                        compat += (strlen(compat) + 1);
                }
        } else
-               aprint_debug(" (%s)", name);
+               aprint_normal(" (%s)", name);
 
        return UNCONF;
 }



Home | Main Index | Thread Index | Old Index