mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
media: pxa_camera: declare variable when DEBUG is defined
[ Upstream commit031b9212ee] 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:6f28435d1c("[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> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
2c0a480ac5
commit
130722b55d
|
|
@ -1386,6 +1386,9 @@ static int pxac_vb2_prepare(struct vb2_buffer *vb)
|
|||
struct pxa_camera_dev *pcdev = vb2_get_drv_priv(vb->vb2_queue);
|
||||
struct pxa_buffer *buf = vb2_to_pxa_buffer(vb);
|
||||
int ret = 0;
|
||||
#ifdef DEBUG
|
||||
int i;
|
||||
#endif
|
||||
|
||||
switch (pcdev->channels) {
|
||||
case 1:
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user