diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2006-01-17 21:04:53 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2006-01-17 21:04:53 +0000 |
commit | ce0c9686d97e9a068f0a3e9eaf6856554ff9b06e (patch) | |
tree | e38f91635193083125f023326724e5bbb56d916c /src | |
parent | 3a68aeb9033bbf6746236fc9a46e2593a37c4983 (diff) |
First, a FATAL error, that blows up your BIOS, should NEVER FAIL to
provide more information. The printk_debug in that failure case is now
a printk_error.
The msm stuff is for debugging.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2159 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/devices/pci_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/pci_device.c b/src/devices/pci_device.c index a002d1cc35..1497f72703 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_error("%s\n", dev_path(left)); } die("PCI: Left over static devices. Check your Config.lb\n"); } |