Remove now-obsolete printf warning.

This commit is contained in:
imp 2005-12-30 19:38:47 +00:00
parent 6e8e63097f
commit bb33881eba

View File

@ -287,18 +287,13 @@ cardbus_release_all_resources(device_t cbdev, struct cardbus_devinfo *dinfo)
/* Free all allocated resources */ /* Free all allocated resources */
STAILQ_FOREACH(rle, &dinfo->pci.resources, link) { STAILQ_FOREACH(rle, &dinfo->pci.resources, link) {
if (rle->res) { if (rle->res) {
if (rman_get_device(rle->res) != cbdev)
device_printf(cbdev, "Bug: Resource still "
"owned by child. "
"(type=%d, rid=%d, addr=%lx)\n",
rle->type, rle->rid,
rman_get_start(rle->res));
BUS_RELEASE_RESOURCE(device_get_parent(cbdev), BUS_RELEASE_RESOURCE(device_get_parent(cbdev),
cbdev, rle->type, rle->rid, rle->res); cbdev, rle->type, rle->rid, rle->res);
rle->res = NULL; rle->res = NULL;
/* /*
* zero out config so the card won't acknowledge * zero out config so the card won't acknowledge
* access to the space anymore * access to the space anymore. XXX doesn't handle
* 64-bit bars.
*/ */
pci_write_config(dinfo->pci.cfg.dev, rle->rid, 0, 4); pci_write_config(dinfo->pci.cfg.dev, rle->rid, 0, 4);
} }