[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20210118134513.613097-1-trix@redhat.com>
Date: Mon, 18 Jan 2021 05:45:13 -0800
From: trix@...hat.com
To: mchehab@...nel.org, hverkuil-cisco@...all.nl,
peter.ujfalusi@...com, robert.jarzmik@...e.fr,
romain.perier@...il.com, jacopo+renesas@...ndi.org,
allen.lkml@...il.com, dan.carpenter@...cle.com
Cc: linux-media@...r.kernel.org, linux-kernel@...r.kernel.org,
Tom Rix <trix@...hat.com>
Subject: [PATCH] media: pxa_camera: declare variable when DEBUG is defined
From: Tom Rix <trix@...hat.com>
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@...hat.com>
---
drivers/media/platform/pxa_camera.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/media/platform/pxa_camera.c b/drivers/media/platform/pxa_camera.c
index b664ce7558a1..75fad9689c90 100644
--- a/drivers/media/platform/pxa_camera.c
+++ b/drivers/media/platform/pxa_camera.c
@@ -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:
--
2.27.0
Powered by blists - more mailing lists