GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / media / tveeprom.h
bloba8ad75a9152a7e609f0be55d8f804f0e9b72c21f
1 /*
2 */
4 struct tveeprom {
5 u32 has_radio;
6 /* If has_ir == 0, then it is unknown what the IR capabilities are,
7 otherwise:
8 bit 0: 1 (= IR capabilities are known)
9 bit 1: IR receiver present
10 bit 2: IR transmitter (blaster) present */
11 u32 has_ir;
12 u32 has_MAC_address; /* 0: no MAC, 1: MAC present, 2: unknown */
14 u32 tuner_type;
15 u32 tuner_formats;
16 u32 tuner_hauppauge_model;
18 u32 tuner2_type;
19 u32 tuner2_formats;
20 u32 tuner2_hauppauge_model;
22 u32 digitizer;
23 u32 digitizer_formats;
25 u32 audio_processor;
26 u32 decoder_processor;
28 u32 model;
29 u32 revision;
30 u32 serial_number;
31 char rev_str[5];
32 u8 MAC_address[6];
35 void tveeprom_hauppauge_analog(struct i2c_client *c, struct tveeprom *tvee,
36 unsigned char *eeprom_data);
38 int tveeprom_read(struct i2c_client *c, unsigned char *eedata, int len);