git: b24ed9c52dd2 - main - powerpc_pmap: include proper vm_radix file

From: Doug Moore <dougm_at_FreeBSD.org>
Date: Tue, 12 Sep 2023 13:13:58 UTC
The branch main has been updated by dougm:

URL: https://cgit.FreeBSD.org/src/commit/?id=b24ed9c52dd296730c23d48e95c5a53ef67b402f

commit b24ed9c52dd296730c23d48e95c5a53ef67b402f
Author:     Doug Moore <dougm@FreeBSD.org>
AuthorDate: 2023-09-12 13:10:15 +0000
Commit:     Doug Moore <dougm@FreeBSD.org>
CommitDate: 2023-09-12 13:10:15 +0000

    powerpc_pmap: include proper vm_radix file
    
    Like the pmap.h files for amd64, arm64, i386 and riscv, the one for powerpc
    should #include vm/_vm_radix.h, not vm/vm_radix.h, to get a definition for
    struct vm_radix.
    
    Fixes a problem introduced with 429c871ddddac4bbf6abf1eb9e2e6603f87c2ef5.
---
 sys/powerpc/include/pmap.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/powerpc/include/pmap.h b/sys/powerpc/include/pmap.h
index 642a990bb49b..e300f3750698 100644
--- a/sys/powerpc/include/pmap.h
+++ b/sys/powerpc/include/pmap.h
@@ -75,7 +75,7 @@
 #include <machine/tlb.h>
 #include <machine/vmparam.h>
 #ifdef __powerpc64__
-#include <vm/vm_radix.h>
+#include <vm/_vm_radix.h>
 #endif
 
 /*