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>
This commit is contained in:
Paul Menzel 2014-02-10 11:46:52 +01:00 committed by Martin Roth
parent 8fcd559ef9
commit 1812311645
2 changed files with 4 additions and 4 deletions

View File

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

View File

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