Nico Huber has submitted this change. ( https://review.coreboot.org/c/coreboot/+/83160?usp=email )
Change subject: mb/emulation/qemu-riscv/cbmem.c: Fix device_tree.h include ......................................................................
mb/emulation/qemu-riscv/cbmem.c: Fix device_tree.h include
Change-Id: I0b49ff8b6275fdde326c79ec21c34faa03094f9e Signed-off-by: Elyes Haouas ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/83160 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Nico Huber nico.h@gmx.de Reviewed-by: Lean Sheng Tan sheng.tan@9elements.com --- M src/mainboard/emulation/qemu-riscv/cbmem.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Lean Sheng Tan: Looks good to me, approved Nico Huber: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/src/mainboard/emulation/qemu-riscv/cbmem.c b/src/mainboard/emulation/qemu-riscv/cbmem.c index 8c37957..3e11415 100644 --- a/src/mainboard/emulation/qemu-riscv/cbmem.c +++ b/src/mainboard/emulation/qemu-riscv/cbmem.c @@ -3,7 +3,7 @@ #include <cbmem.h> #include <symbols.h> #include <ramdetect.h> -#include <device_tree.h> +#include <commonlib/device_tree.h> #include <mcall.h>
uintptr_t cbmem_top_chipset(void)