mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-26 11:47:31 +00:00
Fix the 32-bit arm build.
X-MFC with: r338537 Approved by: re (rgrimes) Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
31184bcd68
commit
9c78fa0a61
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=338539
@ -373,7 +373,8 @@ arm_physmem_exclude_region(vm_paddr_t pa, vm_size_t sz, uint32_t exflags)
|
||||
sz = round_page(sz + adj);
|
||||
|
||||
if (excnt >= nitems(exregions))
|
||||
panic("failed to exclude region %#lx-%#lx", pa, pa + sz);
|
||||
panic("failed to exclude region %#jx-%#jx", (uintmax_t)pa,
|
||||
(uintmax_t)(pa + sz));
|
||||
excnt = insert_region(exregions, excnt, pa, sz, exflags);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user