diff options
author | arch import user (historical) <svn@openbios.org> | 2005-07-06 16:49:54 +0000 |
---|---|---|
committer | arch import user (historical) <svn@openbios.org> | 2005-07-06 16:49:54 +0000 |
commit | 0093e36d9b308373dbc513d075ed7ec2bd114ccb (patch) | |
tree | 0f3fba4e37a541c29106e39e7a5d15fd7c287fb6 | |
parent | 72c3b053d86c68a9e5454a79f0808c898170e21e (diff) |
Revision: linuxbios@linuxbios.org--devel/freebios--devel--2.0--patch-8
Creator: Yinghai Lu <yhlu@tyan.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1927 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/northbridge/amd/amdk8/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/amd/amdk8/debug.c b/src/northbridge/amd/amdk8/debug.c index 3430f43be4..7686662d04 100644 --- a/src/northbridge/amd/amdk8/debug.c +++ b/src/northbridge/amd/amdk8/debug.c @@ -41,7 +41,7 @@ static void dump_pci_device(unsigned dev) print_debug_pci_dev(dev); print_debug("\r\n"); - for(i = 0; i <= 255; i++) { + for(i = 0; i < 256; i++) { unsigned char val; if ((i & 0x0f) == 0) { print_debug_hex8(i); |