mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-07 06:52:07 +00:00
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 <hbmeier@hni.uni-paderborn.de> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
3175da83a0
commit
14df2ccead
1 changed files with 1 additions and 1 deletions
|
@ -237,11 +237,11 @@ static int soc_camera_init_user_formats(struct soc_camera_device *icd)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
icd->num_user_formats = fmts;
|
icd->num_user_formats = fmts;
|
||||||
fmts = 0;
|
|
||||||
|
|
||||||
dev_dbg(&icd->dev, "Found %d supported formats.\n", fmts);
|
dev_dbg(&icd->dev, "Found %d supported formats.\n", fmts);
|
||||||
|
|
||||||
/* Second pass - actually fill data formats */
|
/* Second pass - actually fill data formats */
|
||||||
|
fmts = 0;
|
||||||
for (i = 0; i < icd->num_formats; i++)
|
for (i = 0; i < icd->num_formats; i++)
|
||||||
if (!ici->ops->get_formats) {
|
if (!ici->ops->get_formats) {
|
||||||
icd->user_formats[i].host_fmt = icd->formats + i;
|
icd->user_formats[i].host_fmt = icd->formats + i;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue