summaryrefslogtreecommitdiff
path: root/src/soc/amd/glinda/i2c.c
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-11-09 15:05:23 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-11-10 21:31:18 +0000
commitaba1c945cd44332521df49228b883c7081723812 (patch)
tree4b0c2c61ba4f222ebe8b48e41c0b038ad0ffd873 /src/soc/amd/glinda/i2c.c
parent1d3c2e65724ed92eeef723c1acdc86ba91cbd682 (diff)
/: Remove "ERROR: "/"WARNING: " prefixes from log messages
It is no longer necessary to explicitly add "ERROR: "/"WARNING: " in front of every BIOS_ERR/BIOS_WARN message. Change-Id: I22ee6ae15c3d3a848853c5460b3b3c1795adf2f5 Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69405 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/soc/amd/glinda/i2c.c')
-rw-r--r--src/soc/amd/glinda/i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/glinda/i2c.c b/src/soc/amd/glinda/i2c.c
index 97b982b069..bd3d4dc4f0 100644
--- a/src/soc/amd/glinda/i2c.c
+++ b/src/soc/amd/glinda/i2c.c
@@ -34,7 +34,7 @@ static struct soc_i2c_ctrlr_info i2c_ctrlr[I2C_CTRLR_COUNT] = {
void i2c_set_bar(unsigned int bus, uintptr_t bar)
{
if (bus >= ARRAY_SIZE(i2c_ctrlr)) {
- printk(BIOS_ERR, "Error: i2c index out of bounds: %u.", bus);
+ printk(BIOS_ERR, "i2c index out of bounds: %u.", bus);
return;
}