git: 97767e201286 - stable/13 - arm: fix a typo in nvidia/drm2/tegra_bo.c
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 09 Nov 2021 13:46:18 UTC
The branch stable/13 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=97767e201286193860c5a7ec699171da51580024 commit 97767e201286193860c5a7ec699171da51580024 Author: Mateusz Guzik <mjg@FreeBSD.org> AuthorDate: 2021-10-25 18:42:10 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2021-11-09 13:46:01 +0000 arm: fix a typo in nvidia/drm2/tegra_bo.c Unbreaks building TEGRA124 Sponsored by: Rubicon Communications, LLC ("Netgate") (cherry picked from commit e2493f4912cabd1d04be88fd17139a64bf2a2622) --- sys/arm/nvidia/drm2/tegra_bo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm/nvidia/drm2/tegra_bo.c b/sys/arm/nvidia/drm2/tegra_bo.c index be5177973f4f..ba614d014564 100644 --- a/sys/arm/nvidia/drm2/tegra_bo.c +++ b/sys/arm/nvidia/drm2/tegra_bo.c @@ -105,7 +105,7 @@ tegra_bo_alloc_contig(size_t npages, u_long alignment, vm_memattr_t memattr, boundary = 0; tries = 0; retry: - m = vm_page_alloc_noobj_contig(VM_ALLOC_WIRE | VM_ALLOC_ZERO, npages, + m = vm_page_alloc_noobj_contig(VM_ALLOC_WIRED | VM_ALLOC_ZERO, npages, low, high, alignment, boundary, memattr); if (m == NULL) { if (tries < 3) {