Improve diagnostic message.

This commit is contained in:
Warner Losh 2005-11-09 03:37:52 +00:00
parent 4560dfb5b1
commit 24ea970aff
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=152218

View File

@ -1740,8 +1740,9 @@ pci_alloc_map(device_t dev, device_t child, int type, int *rid,
res = BUS_ALLOC_RESOURCE(device_get_parent(dev), child, type, rid,
start, end, count, flags);
if (res == NULL) {
device_printf(child, "%#lx bytes of rid %#x res %d failed.\n",
count, *rid, type);
device_printf(child,
"%#lx bytes of rid %#x res %d failed (%#lx, %#lx).\n",
count, *rid, type, start, end);
goto out;
}
resource_list_add(rl, type, *rid, start, end, count);