From: Stefan Herbrechtsmeier Date: Wed, 24 Jun 2009 13:31:25 +0000 (-0300) Subject: V4L/DVB (12159): soc_camera: Fix debug output of supported formats count X-Git-Tag: v2.6.31-rc3~74^2~22 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=14df2ccead8f6da5a9c8f904fc629aaf849b7e55;p=~shefty%2Frdma-dev.git V4L/DVB (12159): soc_camera: Fix debug output of supported formats count The supported formats count must be set to 0 after debug output right before the second pass. Signed-off-by: Stefan Herbrechtsmeier Signed-off-by: Guennadi Liakhovetski Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/video/soc_camera.c b/drivers/media/video/soc_camera.c index 16f595d4337..78010abfe8b 100644 --- a/drivers/media/video/soc_camera.c +++ b/drivers/media/video/soc_camera.c @@ -237,11 +237,11 @@ static int soc_camera_init_user_formats(struct soc_camera_device *icd) return -ENOMEM; icd->num_user_formats = fmts; - fmts = 0; dev_dbg(&icd->dev, "Found %d supported formats.\n", fmts); /* Second pass - actually fill data formats */ + fmts = 0; for (i = 0; i < icd->num_formats; i++) if (!ici->ops->get_formats) { icd->user_formats[i].host_fmt = icd->formats + i;