aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/morgana/root_complex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/amd/morgana/root_complex.c')
-rw-r--r--src/soc/amd/morgana/root_complex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/amd/morgana/root_complex.c b/src/soc/amd/morgana/root_complex.c
index 88bcca75d2..1a4f0bd01f 100644
--- a/src/soc/amd/morgana/root_complex.c
+++ b/src/soc/amd/morgana/root_complex.c
@@ -158,7 +158,7 @@ static void read_resources(struct device *dev)
mmconf_resource(dev, idx++);
if (!hob) {
- printk(BIOS_ERR, "Error: %s incomplete because no HOB list was found\n",
+ printk(BIOS_ERR, "%s incomplete because no HOB list was found\n",
__func__);
return;
}
@@ -180,7 +180,7 @@ static void read_resources(struct device *dev)
else if (res->type == EFI_RESOURCE_MEMORY_RESERVED)
reserved_ram_resource_kb(dev, idx++, res->addr / KiB, res->length / KiB);
else
- printk(BIOS_ERR, "Error: failed to set resources for type %d\n",
+ printk(BIOS_ERR, "Failed to set resources for type %d\n",
res->type);
}