From 7944a87dce9355bea07b7cbd005cf5107fac61d2 Mon Sep 17 00:00:00 2001 From: Jessica Clarke Date: Sat, 31 May 2025 20:01:39 +0100 Subject: [PATCH] drm2/ttm: Add missing includes to fix arm TEGRA124 build Fixes: bcd85e0150c9 ("vm_page: make iter_insert() public") --- sys/dev/drm2/ttm/ttm_bo_vm.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/dev/drm2/ttm/ttm_bo_vm.c b/sys/dev/drm2/ttm/ttm_bo_vm.c index b10c5f87a39..a3020535854 100644 --- a/sys/dev/drm2/ttm/ttm_bo_vm.c +++ b/sys/dev/drm2/ttm/ttm_bo_vm.c @@ -35,7 +35,8 @@ * under sponsorship from the FreeBSD Foundation. */ -#include +#include +#include #include "opt_vm.h" #include @@ -46,6 +47,7 @@ #include #include #include +#include #define TTM_BO_VM_NUM_PREFAULT 16