aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_autoconf.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2003-07-22 10:24:41 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2003-07-22 10:24:41 +0000
commit55d1d7034ff822c944b698c23aa2490416bcf30c (patch)
tree822136a990d18001b2db563f705887b258e810ce /sys/kern/subr_autoconf.c
parent60512ca0d2f4eb78a0a2cf88aacc118c1d23bf68 (diff)
downloadsrc-55d1d7034ff822c944b698c23aa2490416bcf30c.tar.gz
src-55d1d7034ff822c944b698c23aa2490416bcf30c.zip
Notes
Diffstat (limited to 'sys/kern/subr_autoconf.c')
-rw-r--r--sys/kern/subr_autoconf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/kern/subr_autoconf.c b/sys/kern/subr_autoconf.c
index 34c60bcae97b..23c7dc4d366c 100644
--- a/sys/kern/subr_autoconf.c
+++ b/sys/kern/subr_autoconf.c
@@ -73,6 +73,9 @@ run_interrupt_driven_config_hooks(dummy)
hook_entry != NULL;
hook_entry = next_entry) {
next_entry = TAILQ_NEXT(hook_entry, ich_links);
+ printf("IDCH: %p(%p)\n",
+ hook_entry->ich_func,
+ hook_entry->ich_arg);
(*hook_entry->ich_func)(hook_entry->ich_arg);
}