git: e2493f4912ca - main - arm: fix a typo in nvidia/drm2/tegra_bo.c
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 25 Oct 2021 18:43:07 UTC
The branch main has been updated by mjg:
URL: https://cgit.FreeBSD.org/src/commit/?id=e2493f4912cabd1d04be88fd17139a64bf2a2622
commit e2493f4912cabd1d04be88fd17139a64bf2a2622
Author: Mateusz Guzik <mjg@FreeBSD.org>
AuthorDate: 2021-10-25 18:42:10 +0000
Commit: Mateusz Guzik <mjg@FreeBSD.org>
CommitDate: 2021-10-25 18:42:10 +0000
arm: fix a typo in nvidia/drm2/tegra_bo.c
Unbreaks building TEGRA124
Sponsored by: Rubicon Communications, LLC ("Netgate")
---
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) {