summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorpgoyette <pgoyette@NetBSD.org>2018-02-26 05:01:21 +0000
committerpgoyette <pgoyette@NetBSD.org>2018-02-26 05:01:21 +0000
commit33e2ba915a3f4859bd025cb834553dab80902d66 (patch)
tree40feb45d3c0fa6da8b474669b4e7b029e6b106f1 /sys/dev
parent8535134bc962f0e7735965e72dac32346b4db767 (diff)
Change the "Child not added" message from normal to debug
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/imcsmb/imc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/imcsmb/imc.c b/sys/dev/imcsmb/imc.c
index 03dcd96b5de..839767e0e64 100644
--- a/sys/dev/imcsmb/imc.c
+++ b/sys/dev/imcsmb/imc.c
@@ -1,4 +1,4 @@
-/* $NetBSD: imc.c,v 1.2 2018/02/26 04:31:32 pgoyette Exp $ */
+/* $NetBSD: imc.c,v 1.3 2018/02/26 05:01:21 pgoyette Exp $ */
/*-
* Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -243,7 +243,7 @@ imc_rescan(device_t self, const char * ifattr, const int *flags)
child = config_found_ia(self, "imc", &imca, NULL);
if (child == NULL) {
- aprint_normal_dev(self, "Child %d imcsmb not added\n",
+ aprint_debug_dev(self, "Child %d imcsmb not added\n",
unit);
}
sc->sc_smbchild[unit] = child;