diff options
author | Steven Toth <stoth@hauppauge.com> | 2006-01-09 12:25:25 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2006-01-09 12:25:25 -0500 |
commit | e0b2d7a89bb250fb0c9068c4481c9fd26c3fb227 (patch) | |
tree | 362ccab98f0cef0d5ee2bf99c2f7ff0bdb474b8c | |
parent | f4a3bc82ed5dcef03a74ff974a31b55eade7ed0f (diff) |
V4L/DVB (3160): Updates to the tveeprom eeprom checking
Updates to the tveeprom eeprom checking
Signed-of-by: Steven Toth <stoth@hauppauge.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
-rw-r--r-- | drivers/media/video/tveeprom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/tveeprom.c b/drivers/media/video/tveeprom.c index a26ce7515dfa..9bb367863a6f 100644 --- a/drivers/media/video/tveeprom.c +++ b/drivers/media/video/tveeprom.c | |||
@@ -387,7 +387,7 @@ void tveeprom_hauppauge_analog(struct i2c_client *c, struct tveeprom *tvee, | |||
387 | if ((eeprom_data[0] == 0x1a) && (eeprom_data[1] == 0xeb) && | 387 | if ((eeprom_data[0] == 0x1a) && (eeprom_data[1] == 0xeb) && |
388 | (eeprom_data[2] == 0x67) && (eeprom_data[3] == 0x95)) | 388 | (eeprom_data[2] == 0x67) && (eeprom_data[3] == 0x95)) |
389 | start=0xa0; /* Generic em28xx offset */ | 389 | start=0xa0; /* Generic em28xx offset */ |
390 | else if (((eeprom_data[0] & 0xf0) == 0x10) && | 390 | else if (((eeprom_data[0] & 0xe1) == 0x01) && |
391 | (eeprom_data[1] == 0x00) && | 391 | (eeprom_data[1] == 0x00) && |
392 | (eeprom_data[2] == 0x00) && | 392 | (eeprom_data[2] == 0x00) && |
393 | (eeprom_data[8] == 0x84)) | 393 | (eeprom_data[8] == 0x84)) |