diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-04-15 12:43:07 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-04-15 12:43:07 +0000 |
commit | 5391fe02596a4e89947228f9ae57cb8f2a3241d5 (patch) | |
tree | c8a23c6c90142259743b501a3decb90ceacd134c /src | |
parent | 7bb34db21abc748b718a692525b247e4b6e26747 (diff) |
Myles suspected this hangs certain machines, so back it out.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5444 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/debug.c b/src/lib/debug.c index 281600c9cd..a2c323c93b 100644 --- a/src/lib/debug.c +++ b/src/lib/debug.c @@ -33,7 +33,7 @@ static inline void print_pci_devices(void) { device_t dev; for (dev = PCI_DEV(0, 0, 0); - dev <= PCI_DEV(0xff, 0x1f, 0x7); dev += PCI_DEV(0, 0, 1)) { + dev <= PCI_DEV(0x00, 0x1f, 0x7); dev += PCI_DEV(0, 0, 1)) { u32 id; id = pci_read_config32(dev, PCI_VENDOR_ID); if (((id & 0xffff) == 0x0000) || ((id & 0xffff) == 0xffff) |