From 2826f17433f8d361dceaeb0324a42f89acdfe122 Mon Sep 17 00:00:00 2001 From: John Birrell Date: Thu, 3 Aug 2006 21:19:13 +0000 Subject: Report the correct function name in a DPRINTF. --- sys/kern/subr_rman.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'sys') diff --git a/sys/kern/subr_rman.c b/sys/kern/subr_rman.c index ce6592ea4d58..c180eba53008 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 ? "" : 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 ? "" : device_get_nameunit(dev))); want_activate = (flags & RF_ACTIVE); flags &= ~RF_ACTIVE; -- cgit v1.3