media: pxa_camera: declare variable when DEBUG is defined
authorTom Rix <trix@redhat.com>
Mon, 18 Jan 2021 13:45:13 +0000 (14:45 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Wed, 27 Jan 2021 12:46:05 +0000 (13:46 +0100)
commit031b9212eeee365443aaef013360ea6cded7b2c4
treee7436cf4532c5296dfc4707e81ad361694ac987a
parenta04e187d231086a1313fd635ac42bdbc997137ad
media: pxa_camera: declare variable when DEBUG is defined

When DEBUG is defined this error occurs

drivers/media/platform/pxa_camera.c:1410:7: error:
  ā€˜iā€™ undeclared (first use in this function)
  for (i = 0; i < vb->num_planes; i++)
       ^
The variable 'i' is missing, so declare it.

Fixes: 6f28435d1c15 ("[media] media: platform: pxa_camera: trivial move of functions")
Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/pxa_camera.c