diff options
author | Nico Huber <nico.h@gmx.de> | 2021-10-14 22:05:45 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2021-10-17 11:48:13 +0000 |
commit | 5bb6f9b7946abb81f495d1f1ead8429553b7c73b (patch) | |
tree | 1565c3912136d438c36b4ff48e85e7577cb9daf5 /src/drivers/emulation/qemu | |
parent | 0c12bdc9f886c17a7b9560a9287344a68b1ccb24 (diff) |
drivers/emulation/qemu: Add missing include for MMIO
Change-Id: Ie3c820e2e20f8f71908319e89e49e5d66f58adc9
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/58347
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/drivers/emulation/qemu')
-rw-r--r-- | src/drivers/emulation/qemu/bochs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/emulation/qemu/bochs.c b/src/drivers/emulation/qemu/bochs.c index 73fa19e2ca..d3b9007abe 100644 --- a/src/drivers/emulation/qemu/bochs.c +++ b/src/drivers/emulation/qemu/bochs.c @@ -2,6 +2,7 @@ #include <stdint.h> #include <arch/io.h> +#include <arch/mmio.h> #include <console/console.h> #include <device/device.h> #include <device/pci.h> |