Commit 9c574ad4 authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] af9035: correct eeprom offsets

Used memory mapped eeprom offsets were off-by 8 bytes.
Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent ab4d1452
......@@ -118,20 +118,20 @@ static const u32 clock_lut_it9135[] = {
* Values 0, 3 and 5 are seen to this day. 0 for single TS and 3/5 for dual TS.
*/
#define EEPROM_BASE_AF9035 0x42fd
#define EEPROM_BASE_IT9135 0x499c
#define EEPROM_BASE_AF9035 0x42f5
#define EEPROM_BASE_IT9135 0x4994
#define EEPROM_SHIFT 0x10
#define EEPROM_IR_MODE 0x10
#define EEPROM_TS_MODE 0x29
#define EEPROM_2ND_DEMOD_ADDR 0x2a
#define EEPROM_IR_TYPE 0x2c
#define EEPROM_1_IF_L 0x30
#define EEPROM_1_IF_H 0x31
#define EEPROM_1_TUNER_ID 0x34
#define EEPROM_2_IF_L 0x40
#define EEPROM_2_IF_H 0x41
#define EEPROM_2_TUNER_ID 0x44
#define EEPROM_IR_MODE 0x18
#define EEPROM_TS_MODE 0x31
#define EEPROM_2ND_DEMOD_ADDR 0x32
#define EEPROM_IR_TYPE 0x34
#define EEPROM_1_IF_L 0x38
#define EEPROM_1_IF_H 0x39
#define EEPROM_1_TUNER_ID 0x3c
#define EEPROM_2_IF_L 0x48
#define EEPROM_2_IF_H 0x49
#define EEPROM_2_TUNER_ID 0x4c
/* USB commands */
#define CMD_MEM_RD 0x00
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment