diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-12-05 22:09:14 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-12-07 13:19:47 +0000 |
commit | 4a9ed707c80543f4dd4a586f2d4131e3d4f468e7 (patch) | |
tree | a8d2a414c52ff953d879c5fed78775bf0136f203 /src/acpi/acpi.c | |
parent | 1e6134d223338557ea743826d159bae85a91ed0a (diff) |
acpi: add missing device/device.h include
The device/device.h provides the definition for struct device used in
those files, so include this header file to make sure that it's not only
included indirectly via some other header file.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I6ff7cdbf0f53ada92adb53cf268e5feee9df4629
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79401
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Wawrzynczak <inforichland@gmail.com>
Diffstat (limited to 'src/acpi/acpi.c')
-rw-r--r-- | src/acpi/acpi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/acpi/acpi.c b/src/acpi/acpi.c index f9e9162545..db9c31646d 100644 --- a/src/acpi/acpi.c +++ b/src/acpi/acpi.c @@ -22,6 +22,7 @@ #include <commonlib/helpers.h> #include <console/console.h> #include <cpu/cpu.h> +#include <device/device.h> #include <device/mmio.h> #include <device/pci.h> #include <drivers/uart/pl011.h> |