Fix the 32-bit arm build.

X-MFC with:     r338537
Approved by:	re (rgrimes)
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Mark Johnston 2018-09-08 23:39:26 +00:00
parent 31184bcd68
commit 9c78fa0a61
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=338539

View File

@ -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);
}