diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-01-29 16:13:06 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-01-30 17:17:01 +0000 |
commit | ac86cf33bf9ff29cbf77a38cd1f0c7e2ba1d1c1e (patch) | |
tree | e2ffe8f954785a6608c6d5f20ec21d4f368411d6 | |
parent | 349b64f37aae4fed66045317bbc6e1c35c7bff86 (diff) | |
download | coreboot-ac86cf33bf9ff29cbf77a38cd1f0c7e2ba1d1c1e.tar.xz |
soc/amd/picasso/chip: add missing acpi/acpi.h include
acpi_is_wakeup_s3() is defined in acpi/acpi.h
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I53916cd15bb28484eb06be4d43f26152de159391
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50125
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/amd/picasso/chip.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/amd/picasso/chip.c b/src/soc/amd/picasso/chip.c index 082c328e5f..17c7bd58e3 100644 --- a/src/soc/amd/picasso/chip.c +++ b/src/soc/amd/picasso/chip.c @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +#include <acpi/acpi.h> #include <console/console.h> #include <device/device.h> #include <device/pci.h> |