diff options
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"); } } |