Fix 64-bit build of libofw.

Adjust a couple of printf() lines that deal with dumping out addresses
to cast to uintmax_t.

This allows building a 64-bit libofw for use in things like a future
Petitboot loader for PowerPC64, and other FDT platforms that require
a 64-bit loader binary and want to use forth.

Sponsored by:	Tag1 Consulting, Inc.
This commit is contained in:
Brandon Bergren 2020-09-08 23:22:11 +00:00
parent 95090cd024
commit 3e91d8268f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=365483

View File

@ -80,11 +80,11 @@ ofw_memmap(int acells)
"Physical Range", "#Pages", "Mode");
for (i = 0; i < nmapping; i++) {
sprintf(lbuf, "%08x-%08x\t%08x-%08x\t%8d\t%6x\n",
mapptr[i].va,
mapptr[i].va + mapptr[i].len,
mapptr[i].pa,
mapptr[i].pa + mapptr[i].len,
sprintf(lbuf, "%08jx-%08jx\t%08jx-%08jx\t%8d\t%6x\n",
(uintmax_t)mapptr[i].va,
(uintmax_t)mapptr[i].va + mapptr[i].len,
(uintmax_t)mapptr[i].pa,
(uintmax_t)mapptr[i].pa + mapptr[i].len,
mapptr[i].len / 0x1000,
mapptr[i].mode);
if (pager_output(lbuf))
@ -98,11 +98,11 @@ ofw_memmap(int acells)
"Physical Range", "#Pages", "Mode");
for (i = 0; i < nmapping; i++) {
sprintf(lbuf, "%08x-%08x\t%08x-%08x\t%8d\t%6x\n",
mapptr2[i].va,
mapptr2[i].va + mapptr2[i].len,
mapptr2[i].pa_lo,
mapptr2[i].pa_lo + mapptr2[i].len,
sprintf(lbuf, "%08jx-%08jx\t%08jx-%08jx\t%8d\t%6x\n",
(uintmax_t)mapptr2[i].va,
(uintmax_t)mapptr2[i].va + mapptr2[i].len,
(uintmax_t)mapptr2[i].pa_lo,
(uintmax_t)mapptr2[i].pa_lo + mapptr2[i].len,
mapptr2[i].len / 0x1000,
mapptr2[i].mode);
if (pager_output(lbuf))