Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1866 → Rev 1867

/drivers/devman/pci_root.c
154,10 → 154,13
 
list_for_each_entry(dev, &bus->devices, bus_list)
{
dbgprintf("PCI_%x_%x bus:%d devfn: %x bios irq %d acpi irq %d\n",
if(dev->pin)
{
dbgprintf("PCI_%x_%x bus:%d devfn: %x pin %d bios irq: %d acpi irq: %d\n",
dev->vendor, dev->device, dev->busnr, dev->devfn,
dev->irq, acpi_get_irq(dev));
dev->pin, dev->irq, acpi_get_irq(dev));
};
};
}
 
void print_pci_irqs()
164,7 → 167,6
{
struct acpi_pci_root *root;
 
ENTER();
list_for_each_entry(root, &acpi_pci_roots, node)
{
struct pci_bus *pbus, *tbus;
174,9 → 176,10
 
list_for_each_entry(dev, &pbus->devices, bus_list)
{
dbgprintf("PCI_%x_%x bus:%d devfn: %x bios irq %d acpi irq %d\n",
if(dev->pin)
dbgprintf("PCI_%x_%x bus:%d devfn: %x pin %d bios irq: %d acpi irq: %d\n",
dev->vendor, dev->device, dev->busnr, dev->devfn,
dev->irq, acpi_get_irq(dev));
dev->pin, dev->irq, acpi_get_irq(dev));
};
 
list_for_each_entry(tbus, &pbus->children, node)
184,7 → 187,6
print_bus_irqs(tbus);
};
}
LEAVE();
};