3463b306428bbb87 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Here's my suggested solution:

=3D=3D=3D
diff --git a/sys/contrib/vchiq/interface/vchiq_ar= m/vchiq_2835_arm.c b/sys/contrib/vchiq/interface/vchiq_arm/vchiq_2835_arm.c=
index 96c3a0db8aa5..7e105a6b3b77 100644
--- a/sys/contrib/vchiq/inte= rface/vchiq_arm/vchiq_2835_arm.c
+++ b/sys/contrib/vchiq/interface/vchiq= _arm/vchiq_2835_arm.c
@@ -628,7 +628,9 @@ free_pagelist(BULKINFO_T *bi, = int actual)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 pagelist =3D bi->pagelist;=C2=A0
=C2=A0 =C2=A0 =C2=A0 =C2=A0 vchiq_log_trace(vchiq_arm_log_level,=
- =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 "free_pagelist = - %zx, %d (%u bytes @%p)", (size_t)pagelist, actual, pagelist->leng= th, bi->buf);
+ =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 "free_pagelis= t - %zx, %d (%lu bytes @%p)",
+ =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = (size_t)pagelist, (int)actual, (unsigned long)pagelist->length,
+ =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 bi->buf);
=C2=A0
=C2=A0 =C2=A0 =C2= =A0 =C2=A0 num_pages =3D
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 (pagelist->length + pagelist->offset + PAGE_SIZE - 1) /=3D=3D=3D

The code /is/ being compiled on my arm6= 4 and armv7 builds, I verified this by using #error in this source file. Bu= t the format strings aren't eliciting a type=C2=A0violation when I cros= s compile.
--0000000000003463b306428bbb87--