diff options
Diffstat (limited to 'src/soc/intel/apollolake/elog.c')
-rw-r--r-- | src/soc/intel/apollolake/elog.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/soc/intel/apollolake/elog.c b/src/soc/intel/apollolake/elog.c index d17d407413..47b68f1489 100644 --- a/src/soc/intel/apollolake/elog.c +++ b/src/soc/intel/apollolake/elog.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <cbmem.h> +#include <acpi/acpi_pm.h> #include <console/console.h> #include <device/pci_type.h> #include <elog.h> @@ -88,14 +88,10 @@ static void pch_log_power_and_resets(const struct chipset_power_state *ps) void pch_log_state(void) { - struct chipset_power_state *ps = cbmem_find(CBMEM_ID_POWER_STATE); + const struct chipset_power_state *ps; - if (ps == NULL) { - printk(BIOS_ERR, - "Not logging power state information. " - "Power state not found in cbmem.\n"); + if (acpi_pm_state_for_elog(&ps) < 0) return; - } /* Power and Reset */ pch_log_power_and_resets(ps); |