diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2021-01-16 17:31:40 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-01-18 07:47:24 +0000 |
commit | 1e4779e87e62d42086da16ddc5bfb0627b3b31ee (patch) | |
tree | 3cc82fd5110c8e90dc590e81c51b7b5ac669fd9d /src/soc/intel/braswell | |
parent | ce5b1d1ec7ddb9d0b621b226df435efe87f378a3 (diff) |
soc/intel/braswell/chip.c: Use __func__
Change-Id: I96b302f5a1f10daaed017a2453d1568a2e49e4ad
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49558
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/soc/intel/braswell')
-rw-r--r-- | src/soc/intel/braswell/chip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/braswell/chip.c b/src/soc/intel/braswell/chip.c index 2adda5494f..d759602f40 100644 --- a/src/soc/intel/braswell/chip.c +++ b/src/soc/intel/braswell/chip.c @@ -50,8 +50,8 @@ void soc_silicon_init_params(SILICON_INIT_UPD *params) struct soc_intel_braswell_config *config; if (!dev) { - printk(BIOS_ERR, "Error! Device (%s) not found, soc_silicon_init_params!\n", - dev_path(dev)); + printk(BIOS_ERR, "Error! Device (%s) not found, %s!\n", + dev_path(dev), __func__); return; } |