Fix a couple of broken FLOW traces.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27683 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent 2008-09-22 02:10:14 +00:00
parent 7ada326834
commit 1ad71ed0a0

View File

@ -829,7 +829,7 @@ PCI::_CreateBus(PCIDev *parent, int domain, uint8 bus)
PCIDev *
PCI::_CreateDevice(PCIBus *parent, uint8 device, uint8 function)
{
FLOW("PCI: CreateDevice, domain %u, bus %u, dev %u, func %u:\n", parent->domain, parent->bus, dev, function);
FLOW("PCI: CreateDevice, domain %u, bus %u, dev %u, func %u:\n", parent->domain, parent->bus, device, function);
PCIDev *newDev = new(std::nothrow) PCIDev;
if (newDev == NULL)
@ -846,7 +846,7 @@ PCI::_CreateDevice(PCIBus *parent, uint8 device, uint8 function)
_ReadBasicInfo(newDev);
FLOW("PCI: CreateDevice, vendor 0x%04x, device 0x%04x, class_base 0x%02x, class_sub 0x%02x\n",
newdev->info.vendor_id, newdev->info.device_id, newdev->info.class_base, newdev->info.class_sub);
newDev->info.vendor_id, newDev->info.device_id, newDev->info.class_base, newDev->info.class_sub);
// append
if (parent->child == NULL) {