Skip to content

Commit

Permalink
V4L/DVB (12619): gspca: mr97310a fix detection of sensortype for vivi…
Browse files Browse the repository at this point in the history
…cam with id byte of 0x53

gspca: mr97310a fix detection of sensortype for vivicam with id byte of 0x53

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Hans de Goede authored and Mauro Carvalho Chehab committed Sep 12, 2009
1 parent 89f0863 commit 58d0b2f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/media/video/gspca/mr97310a.c
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,8 @@ static int start_cif_cam(struct gspca_dev *gspca_dev)
* Elta-Media 8212dc 0x23 T. Kaiser 1
* Philips dig. keych. 0x37 T. Kilgore 1
*/
if ((data[0] & 0x78) == 8 || (data[0] & 0x2) == 0x2)
if ((data[0] & 0x78) == 8 ||
((data[0] & 0x2) == 0x2 && data[0] != 0x53))
sd->sensor_type = 1;

PDEBUG(D_ERR, "Sensor type is %01x", sd->sensor_type);
Expand Down

0 comments on commit 58d0b2f

Please sign in to comment.