X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fdevices%2Fpci_device.c;h=9451ea35aa2535263d047f3299267f2054c63435;hb=085cb4b4ca9a51e42f0665850e2cc9879bfbfa76;hp=a002d1cc35f791cf9dd47d3546fbed7b6fef4e3b;hpb=7ce8c54e2ba89059d28790550a8f74907b54b916;p=coreboot.git diff --git a/src/devices/pci_device.c b/src/devices/pci_device.c index a002d1cc3..9451ea35a 100644 --- a/src/devices/pci_device.c +++ b/src/devices/pci_device.c @@ -1041,7 +1041,7 @@ unsigned int pci_scan_bus(struct bus *bus, if(old_devices) { device_t left; for(left = old_devices; left; left = left->sibling) { - printk_debug("%s\n", dev_path(left)); + printk_err("%s\n", dev_path(left)); } die("PCI: Left over static devices. Check your Config.lb\n"); } @@ -1161,7 +1161,7 @@ unsigned int pci_scan_bridge(struct device *dev, unsigned int max) Tell the EISA int controller this int must be level triggered THIS IS A KLUDGE -- sorry, this needs to get cleaned up. */ -static void pci_level_irq(unsigned char intNum) +void pci_level_irq(unsigned char intNum) { unsigned short intBits = inb(0x4d0) | (((unsigned) inb(0x4d1)) << 8);