Module Name: src Committed By: thorpej Date: Wed Jun 20 05:59:18 UTC 2018
Modified Files: src/sys/dev/fdt: fdtbus.c Log Message: 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. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/sys/dev/fdt/fdtbus.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/fdt/fdtbus.c diff -u src/sys/dev/fdt/fdtbus.c:1.17 src/sys/dev/fdt/fdtbus.c:1.18 --- src/sys/dev/fdt/fdtbus.c:1.17 Tue Jun 12 00:19:17 2018 +++ src/sys/dev/fdt/fdtbus.c Wed Jun 20 05:59:17 2018 @@ -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 <jmcne...@invisible.ca> @@ -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 @@ fdtbus_print(void *aux, const char *pnp) compat += (strlen(compat) + 1); } } else - aprint_debug(" (%s)", name); + aprint_normal(" (%s)", name); return UNCONF; }