Add debugging to rman_manage_region() as well. This is useful since we

manage subregions in ACPI.

MFC after:	3 days
This commit is contained in:
Nate Lawson 2004-08-19 16:41:12 +00:00
parent 65da79c4be
commit c003dab8ff

View File

@ -123,6 +123,8 @@ rman_manage_region(struct rman *rm, u_long start, u_long end)
{
struct resource *r, *s;
DPRINTF(("rman_manage_region: <%s> request: start %#lx, end %#lx",
rm->rm_descr, start, end));
r = malloc(sizeof *r, M_RMAN, M_NOWAIT | M_ZERO);
if (r == 0)
return ENOMEM;