aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2022-08-16 17:47:08 +0200
committerMartin L Roth <gaumless@gmail.com>2022-08-21 14:46:54 +0000
commitbbd07043ff9fd1d389a5d39c70a5bc2f6f4fb379 (patch)
tree0efad6a2e5d328cdbf7e7408de436bff86f9232c
parentf06ec60b48636332e5e6db13cae1dfcbf1679060 (diff)
intel/systemagent: Align debug output
Output should be easier to read as a table. Change-Id: I32e3e0aab5afd25c0b004d18f64de76445d9a0ed Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/66801 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subratabanik@google.com>
-rw-r--r--src/soc/intel/common/block/systemagent/systemagent.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/systemagent/systemagent.c b/src/soc/intel/common/block/systemagent/systemagent.c
index 1fbd8aa7f0..a5c3a3a671 100644
--- a/src/soc/intel/common/block/systemagent/systemagent.c
+++ b/src/soc/intel/common/block/systemagent/systemagent.c
@@ -104,7 +104,8 @@ void sa_add_fixed_mmio_resources(struct device *dev, int *resource_cnt,
size = sa_fixed_resources[i].size;
base = sa_fixed_resources[i].base;
- printk(BIOS_DEBUG, "SA MMIO resource: %s -> base = 0x%llx, size = 0x%llx\n",
+ printk(BIOS_DEBUG,
+ "SA MMIO resource: %-8s -> base = 0x%08llx, size = 0x%08llx\n",
sa_fixed_resources[i].description, sa_fixed_resources[i].base,
sa_fixed_resources[i].size);