1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-12 14:29:28 +00:00

Remove debug now that I've looped back the big changes into my p4 tree.

This commit is contained in:
Warner Losh 2005-12-30 19:36:29 +00:00
parent a9883bc8c4
commit 0c4246bd98
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=153899

View File

@ -946,10 +946,6 @@ pci_add_map(device_t pcib, device_t bus, device_t dev,
*/
res = resource_list_alloc(rl, bus, dev, type, &reg, start, end, count,
prefetch ? RF_PREFETCHABLE : 0);
if (res == NULL)
printf("alloc failed\n");
else
printf("Allocated for %#x: start %#lx end %#lx\n", reg, rman_get_start(res), rman_get_end(res));
if (res != NULL)
pci_write_config(dev, reg, rman_get_start(res), 4);
return (barlen);