diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2021-01-16 17:33:27 +0100 |
---|---|---|
committer | Michael Niewöhner <foss@mniewoehner.de> | 2021-01-24 21:27:07 +0000 |
commit | 7dbc4a4658dd606d634b748c8c99b817754472c3 (patch) | |
tree | ea6ae9ddcef83d41e5428aebdd7260e844a8317a /src/soc/intel | |
parent | f9e18520c9e576f819321154917f60b6c6725317 (diff) |
soc/intel/denverton_ns/pmc.c: Use __func__
Change-Id: I06134e48b2d33c178883fc2047bcfbad417c6d02
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49562
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/denverton_ns/pmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/denverton_ns/pmc.c b/src/soc/intel/denverton_ns/pmc.c index 258e6a4f83..d75f7f05a6 100644 --- a/src/soc/intel/denverton_ns/pmc.c +++ b/src/soc/intel/denverton_ns/pmc.c @@ -30,7 +30,7 @@ static void pch_set_acpi_mode(void) static void pmc_init(struct device *dev) { - printk(BIOS_DEBUG, "pch: pmc_init\n"); + printk(BIOS_DEBUG, "pch: %s\n", __func__); /* Get the base address */ acpi_base = pci_read_config16(dev, PMC_ACPI_BASE) & MASK_PMC_ACPI_BASE; |