summaryrefslogtreecommitdiffstats
path: root/src/northbridge
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-12-05 08:48:50 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-12-10 05:07:14 +0000
commit8823ba167318e87f74717d0c32e29b58a1ed3eca (patch)
treea63711a64d2efb526a86b63b61ce15413a5f9caf /src/northbridge
parent8d1ef734a220d2cbb297a4f9485c0364c5a76071 (diff)
downloadcoreboot-8823ba167318e87f74717d0c32e29b58a1ed3eca.tar.gz
coreboot-8823ba167318e87f74717d0c32e29b58a1ed3eca.tar.bz2
coreboot-8823ba167318e87f74717d0c32e29b58a1ed3eca.zip
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/northbridge')
-rw-r--r--src/northbridge/intel/x4x/bootblock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/x4x/bootblock.c b/src/northbridge/intel/x4x/bootblock.c
index 71a0609e55d9..123385961f13 100644
--- a/src/northbridge/intel/x4x/bootblock.c
+++ b/src/northbridge/intel/x4x/bootblock.c
@@ -1,8 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <arch/bootblock.h>
-#include <arch/mmio.h>
#include <assert.h>
+#include <device/mmio.h>
#include <device/pci_ops.h>
#include <types.h>