aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/video/gspca/pac207.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/media/video/gspca/pac207.c b/drivers/media/video/gspca/pac207.c
index b580af92d231..4f197c1f4a76 100644
--- a/drivers/media/video/gspca/pac207.c
+++ b/drivers/media/video/gspca/pac207.c
@@ -166,7 +166,9 @@ static struct v4l2_pix_format sif_mode[] = {
166 .priv = 1}, 166 .priv = 1},
167 {352, 288, V4L2_PIX_FMT_PAC207, V4L2_FIELD_NONE, 167 {352, 288, V4L2_PIX_FMT_PAC207, V4L2_FIELD_NONE,
168 .bytesperline = 352, 168 .bytesperline = 352,
169 .sizeimage = 352 * 288 / 2, /* compressed */ 169 /* compressed, but only when needed (not compressed
170 when the framerate is low) */
171 .sizeimage = (352 + 2) * 288,
170 .colorspace = V4L2_COLORSPACE_SRGB, 172 .colorspace = V4L2_COLORSPACE_SRGB,
171 .priv = 0}, 173 .priv = 0},
172}; 174};