staging/bcm2835-isp: Fix compiler warning
authorPhil Elwell <phil@raspberrypi.com>
Fri, 23 Apr 2021 15:16:49 +0000 (16:16 +0100)
committerDom Cobley <popcornmix@gmail.com>
Mon, 21 Mar 2022 16:04:14 +0000 (16:04 +0000)
commite0898e24bd87767618ada5971df8000286a348bd
tree92f84cd2232d1043897bf03aa87831cfa2732e4e
parent9a4ad0d60af9423fbf40d50525d355c17d4dba2c
staging/bcm2835-isp: Fix compiler warning

The result of dividing a u32 by a size_t is an unsigned int on arm32
and a long unsigned int on arm64. Use "%zu" (the size_t format) to
remove the build warning for 64-bit builds.

Signed-off-by: Phil Elwell <phil@raspberrypi.com>
drivers/staging/vc04_services/bcm2835-isp/bcm2835-v4l2-isp.c