diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2008-10-12 14:40:23 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-10-12 14:40:23 +0000 |
commit | 0a20c416226d34ef25881e4d143cf1b8bf531656 (patch) | |
tree | 4063219eef59254c34ef8db6fef59f3d2fc7e1c8 /src/southbridge/via/vt8237r/vt8237r.c | |
parent | 2e5a9d952f3f3d23cf57a08abeffe3dee3444950 (diff) |
VIA VT8237R cleanups (trivial).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3651 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/via/vt8237r/vt8237r.c')
-rw-r--r-- | src/southbridge/via/vt8237r/vt8237r.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/southbridge/via/vt8237r/vt8237r.c b/src/southbridge/via/vt8237r/vt8237r.c index a72b9a1c06..4ec49cd1c8 100644 --- a/src/southbridge/via/vt8237r/vt8237r.c +++ b/src/southbridge/via/vt8237r/vt8237r.c @@ -63,9 +63,8 @@ void dump_south(device_t dev) for (i = 0; i < 256; i += 16) { printk_debug("%02x: ", i); - for (j = 0; j < 16; j++) { + for (j = 0; j < 16; j++) printk_debug("%02x ", pci_read_config8(dev, i + j)); - } printk_debug("\n"); } } |