aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/sn9c102
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2010-03-11 06:12:39 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-05-18 00:50:12 -0300
commitf0dbf82bf1ff97c24af228328fb21c93fcfcb983 (patch)
tree8b1952d9419be5afb16a2f6341c00cbe97e0fe64 /drivers/media/video/sn9c102
parent436c2c533a2a2f98d95347f4d5b4022becb046f6 (diff)
downloadkernel_samsung_smdk4412-f0dbf82bf1ff97c24af228328fb21c93fcfcb983.zip
kernel_samsung_smdk4412-f0dbf82bf1ff97c24af228328fb21c93fcfcb983.tar.gz
kernel_samsung_smdk4412-f0dbf82bf1ff97c24af228328fb21c93fcfcb983.tar.bz2
V4L/DVB: sn9c102: Make hv7131d sensor code also recognize the HV7131E
The hv7131d sensor code also works for the hv7131e, this patch changes it to also recognize the hv7131e sensor id. Tested-by: Frank Danapfel <fdanapfe@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/sn9c102')
-rw-r--r--drivers/media/video/sn9c102/sn9c102_hv7131d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/sn9c102/sn9c102_hv7131d.c b/drivers/media/video/sn9c102/sn9c102_hv7131d.c
index db24349..2dce5c9 100644
--- a/drivers/media/video/sn9c102/sn9c102_hv7131d.c
+++ b/drivers/media/video/sn9c102/sn9c102_hv7131d.c
@@ -255,7 +255,7 @@ int sn9c102_probe_hv7131d(struct sn9c102_device* cam)
if (err || r0 < 0 || r1 < 0)
return -EIO;
- if (r0 != 0x00 || r1 != 0x04)
+ if ((r0 != 0x00 && r0 != 0x01) || r1 != 0x04)
return -ENODEV;
sn9c102_attach_sensor(cam, &hv7131d);