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/amd | |
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/amd')
-rw-r--r-- | src/southbridge/amd/cs5535/cs5535.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/southbridge/amd/cs5535/cs5535.c b/src/southbridge/amd/cs5535/cs5535.c index 2868683df7..67d7eee334 100644 --- a/src/southbridge/amd/cs5535/cs5535.c +++ b/src/southbridge/amd/cs5535/cs5535.c @@ -57,9 +57,9 @@ static void dump_south(struct device *dev) int i, j; for (i = 0; i < 256; i+=16) { - printk(BIOS_DEBUG, "0x%02x: ", i); + printk(BIOS_DEBUG, "0x%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"); } } |