From 2b622a119005107fdb4cb3f3e45316016240e42d Mon Sep 17 00:00:00 2001 From: patrick Date: Sat, 5 Nov 2022 18:58:24 +0000 Subject: [PATCH] Activate the device tree we just loaded from disk. While this doesn't fix any current bug, it might catch issues in the future. ok kettenis@ --- sys/arch/arm64/stand/efiboot/efiboot.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/arch/arm64/stand/efiboot/efiboot.c b/sys/arch/arm64/stand/efiboot/efiboot.c index 525fea34545..5f28c2a4fcc 100644 --- a/sys/arch/arm64/stand/efiboot/efiboot.c +++ b/sys/arch/arm64/stand/efiboot/efiboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: efiboot.c,v 1.42 2022/06/28 19:55:22 kettenis Exp $ */ +/* $OpenBSD: efiboot.c,v 1.43 2022/11/05 18:58:24 patrick Exp $ */ /* * Copyright (c) 2015 YASUOKA Masahiko @@ -1122,6 +1122,7 @@ Xdtb_efi(void) } fdt = (void *)addr; + fdt_init(fdt); return (0); } -- 2.20.1