aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntti Palosaari <crope@iki.fi>2013-03-07 17:22:52 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-03-21 18:01:58 -0400
commit70375ecc452128d855f89e04b31a0961501cc153 (patch)
tree276e927e0f7820956895bbd4e67728fb5399eb10
parent1c72fe2679996a125219caaede542ad6913a3539 (diff)
[media] af9035: change dual mode boolean to bit field
For some reason there seems to be value 0x03 in eeprom for dual mode (and 0x00 for single mode). Boolean is not always 1 bit wide - it could be 8 bit wide too. Storing number 0x03 to boolean causes driver to thing there is 4 tuners in some cases :o Add also some comments regarding to eeprom. Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/usb/dvb-usb-v2/af9035.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb-v2/af9035.h b/drivers/media/usb/dvb-usb-v2/af9035.h
index 2f7d269c7d60..0f42b6cb3708 100644
--- a/drivers/media/usb/dvb-usb-v2/af9035.h
+++ b/drivers/media/usb/dvb-usb-v2/af9035.h
@@ -59,7 +59,7 @@ struct state {
59 u8 prechip_version; 59 u8 prechip_version;
60 u8 chip_version; 60 u8 chip_version;
61 u16 chip_type; 61 u16 chip_type;
62 bool dual_mode; 62 u8 dual_mode:1;
63 u16 eeprom_addr; 63 u16 eeprom_addr;
64 struct af9033_config af9033_config[2]; 64 struct af9033_config af9033_config[2];
65}; 65};
@@ -96,6 +96,14 @@ static const u32 clock_lut_it9135[] = {
96#define AF9035_FIRMWARE_IT9135_V1 "dvb-usb-it9135-01.fw" 96#define AF9035_FIRMWARE_IT9135_V1 "dvb-usb-it9135-01.fw"
97#define AF9035_FIRMWARE_IT9135_V2 "dvb-usb-it9135-02.fw" 97#define AF9035_FIRMWARE_IT9135_V2 "dvb-usb-it9135-02.fw"
98 98
99/*
100 * eeprom is memory mapped as read only. Writing that memory mapped address
101 * will not corrupt eeprom.
102 *
103 * eeprom has value 0x00 single mode and 0x03 for dual mode as far as I have
104 * seen to this day.
105 */
106
99#define EEPROM_BASE_AF9035 0x42fd 107#define EEPROM_BASE_AF9035 0x42fd
100#define EEPROM_BASE_IT9135 0x499c 108#define EEPROM_BASE_IT9135 0x499c
101#define EEPROM_SHIFT 0x10 109#define EEPROM_SHIFT 0x10