From: Jean-François Moine Date: Wed, 30 Nov 2011 09:22:29 +0000 (-0300) Subject: [media] gspca - topro: Lower the frame rate in 640x480 for the tp6800 X-Git-Tag: firefly_0821_release~3680^2~2904^2~547 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b267b73d5a508eb9c92d9781d951f4c0d035481a;p=firefly-linux-kernel-4.4.55.git [media] gspca - topro: Lower the frame rate in 640x480 for the tp6800 The topro webcams don't support 30fps in 640x480 mode. Signed-off-by: Jean-François Moine Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/video/gspca/topro.c b/drivers/media/video/gspca/topro.c index 29596c59837f..acb209a67100 100644 --- a/drivers/media/video/gspca/topro.c +++ b/drivers/media/video/gspca/topro.c @@ -3946,7 +3946,7 @@ static int get_fr_idx(struct gspca_dev *gspca_dev) /* 640x480 * 30 fps does not work */ if (i == 6 /* if 30 fps */ && gspca_dev->width == 640) - i = 0x86; /* 15 fps */ + i = 0x05; /* 15 fps */ } else { for (i = 0; i < ARRAY_SIZE(rates_6810) - 1; i++) { if (sd->framerate >= rates_6810[i])