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 429c871ddd.
This commit is contained in:
Doug Moore 2023-09-12 08:10:15 -05:00
parent 78847e1e59
commit b24ed9c52d

View file

@ -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
/*