diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2014-02-10 11:46:52 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-11-03 23:54:41 +0000 |
commit | 181231164529203baf9fde2b82f6994f4d2c1abc (patch) | |
tree | c56fa0ceba61966948db4acbdb92bc891242ff58 /src/southbridge/via/vt8237r | |
parent | 8fcd559ef9780bb1f8a81e4fcf2985782b01817a (diff) |
southbridge: Remove trailing space in `dump_south()` output
Change-Id: I4df9f8ce1058a2bb219508d0c8d04e153d37131c
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://review.coreboot.org/5179
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/southbridge/via/vt8237r')
-rw-r--r-- | src/southbridge/via/vt8237r/vt8237r.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/southbridge/via/vt8237r/vt8237r.c b/src/southbridge/via/vt8237r/vt8237r.c index f32aa3f835..e1a0e35a86 100644 --- a/src/southbridge/via/vt8237r/vt8237r.c +++ b/src/southbridge/via/vt8237r/vt8237r.c @@ -49,9 +49,9 @@ void dump_south(device_t dev) int i, j; for (i = 0; i < 256; i += 16) { - printk(BIOS_DEBUG, "%02x: ", i); + printk(BIOS_DEBUG, "%02x:", i); for (j = 0; j < 16; j++) - printk(BIOS_DEBUG, "%02x ", pci_read_config8(dev, i + j)); + printk(BIOS_DEBUG, " %02x", pci_read_config8(dev, i + j)); printk(BIOS_DEBUG, "\n"); } } |