summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_rman.c
diff options
context:
space:
mode:
authorjb <jb@FreeBSD.org>2006-08-03 21:19:13 +0000
committerjb <jb@FreeBSD.org>2006-08-03 21:19:13 +0000
commit3cb851c2d17bcd9b5f6873942d9a9d2680f5cf99 (patch)
tree9e3c961ec8b52fd3b66e68e796a184f87b171908 /sys/kern/subr_rman.c
parented29850fa069a7cfac953f218d2bb2964df983da (diff)
downloadFreeBSD-src-3cb851c2d17bcd9b5f6873942d9a9d2680f5cf99.zip
FreeBSD-src-3cb851c2d17bcd9b5f6873942d9a9d2680f5cf99.tar.gz
Report the correct function name in a DPRINTF.
Diffstat (limited to 'sys/kern/subr_rman.c')
-rw-r--r--sys/kern/subr_rman.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/kern/subr_rman.c b/sys/kern/subr_rman.c
index ce6592e..c180eba 100644
--- a/sys/kern/subr_rman.c
+++ b/sys/kern/subr_rman.c
@@ -235,9 +235,10 @@ rman_reserve_resource_bound(struct rman *rm, u_long start, u_long end,
rv = NULL;
- DPRINTF(("rman_reserve_resource: <%s> request: [%#lx, %#lx], length "
- "%#lx, flags %u, device %s\n", rm->rm_descr, start, end, count,
- flags, dev == NULL ? "<null>" : device_get_nameunit(dev)));
+ DPRINTF(("rman_reserve_resource_bound: <%s> request: [%#lx, %#lx], "
+ "length %#lx, flags %u, device %s\n", rm->rm_descr, start, end,
+ count, flags,
+ dev == NULL ? "<null>" : device_get_nameunit(dev)));
want_activate = (flags & RF_ACTIVE);
flags &= ~RF_ACTIVE;
OpenPOWER on IntegriCloud