diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-01-03 15:35:52 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-01-03 15:35:52 +0000 |
commit | a29fb61ff43403941161a6e3c4b4288aa237512e (patch) | |
tree | b60aac67251a7750d921fa89e3b4dbe043551689 | |
parent | 1bb68289001f95b49499ac8eb483a7a10e64cc52 (diff) | |
download | coreboot-a29fb61ff43403941161a6e3c4b4288aa237512e.tar.xz |
improve debug output.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4995 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-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 3373c8481c..10e6d23048 100644 --- a/src/devices/pci_device.c +++ b/src/devices/pci_device.c @@ -950,7 +950,7 @@ device_t pci_probe_dev(device_t dev, struct bus * bus, unsigned devfn) if ((id == 0xffffffff) || (id == 0x00000000) || (id == 0x0000ffff) || (id == 0xffff0000)) { if (dev->enabled) { - printk_info("Disabling static device: %s\n", + printk_info("PCI: Static device %s not found, disabling it.\n", dev_path(dev)); dev->enabled = 0; } |