diff options
author | Nico Huber <nico.h@gmx.de> | 2024-08-16 18:20:10 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2024-08-16 19:16:56 +0000 |
commit | 03401d259f0640344f72224b5c4e5f06a5ea01e2 (patch) | |
tree | 8242795e31b11f7bf65ea267670da06b98e5c676 /src | |
parent | 8cc1d79ed0c3e523e080b9ae9bab35bb6d70d62e (diff) |
mb/qemu-aarch64: Fix include path for device_tree.h
Recently merged commit 8cc1d79ed0c3 (mainboard/qemu-aarch64: Get top
of memory from device-tree blob) missed a rebase and hence needs the
include path updated.
Tested `make qemu` for qemu-aarch64.
Change-Id: Id669eeaabbc1710bb7e408659f2d79f682427919
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83945
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/emulation/qemu-aarch64/cbmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/emulation/qemu-aarch64/cbmem.c b/src/mainboard/emulation/qemu-aarch64/cbmem.c index 4cdd44f993..3aac9bf715 100644 --- a/src/mainboard/emulation/qemu-aarch64/cbmem.c +++ b/src/mainboard/emulation/qemu-aarch64/cbmem.c @@ -3,7 +3,7 @@ #include <cbmem.h> #include <ramdetect.h> #include <symbols.h> -#include <device_tree.h> +#include <commonlib/device_tree.h> DECLARE_REGION(fdt) uintptr_t cbmem_top_chipset(void) |