diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-12-05 08:48:50 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-12-10 05:07:14 +0000 |
commit | 8823ba167318e87f74717d0c32e29b58a1ed3eca (patch) | |
tree | a63711a64d2efb526a86b63b61ce15413a5f9caf /src/drivers/emulation/qemu | |
parent | 8d1ef734a220d2cbb297a4f9485c0364c5a76071 (diff) |
treewide: Include <device/mmio.h> instead of <arch/mmio.h>
<device/mmio.h>` chain-include `<arch/mmio.h>:
https://doc.coreboot.org/contributing/coding_style.html#headers-and-includes
Also sort includes while on it.
Change-Id: Ie62e4295ce735a6ca74fbe2499b41aab2e76d506
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70291
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/drivers/emulation/qemu')
-rw-r--r-- | src/drivers/emulation/qemu/bochs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/drivers/emulation/qemu/bochs.c b/src/drivers/emulation/qemu/bochs.c index d3b9007abe..4634021b67 100644 --- a/src/drivers/emulation/qemu/bochs.c +++ b/src/drivers/emulation/qemu/bochs.c @@ -1,16 +1,16 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <stdint.h> #include <arch/io.h> -#include <arch/mmio.h> #include <console/console.h> #include <device/device.h> +#include <device/mmio.h> #include <device/pci.h> -#include <device/pci_ops.h> #include <device/pci_ids.h> +#include <device/pci_ops.h> +#include <framebuffer_info.h> #include <pc80/vga.h> #include <pc80/vga_io.h> -#include <framebuffer_info.h> +#include <stdint.h> /* VGA init. We use the Bochs VESA VBE extensions */ #define VBE_DISPI_IOPORT_INDEX 0x01CE |