diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2005-08-30 05:11:41 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2005-08-30 05:11:41 +0000 |
commit | 92a16dc4c122516cf49f876bf229d9741f19bac9 (patch) | |
tree | 7a18b86707a24a07956223094b62e05f3f43e434 /linux/include/media | |
parent | f1580aa239dfdb58cfdc6cc399f7d7db29c4564a (diff) | |
download | mediapointer-dvb-s2-92a16dc4c122516cf49f876bf229d9741f19bac9.tar.gz mediapointer-dvb-s2-92a16dc4c122516cf49f876bf229d9741f19bac9.tar.bz2 |
* bttv-cards.c,cx88-cards.c,tveeprom.h:
- tveeprom patch was not complete. Completing it.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'linux/include/media')
-rw-r--r-- | linux/include/media/tveeprom.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/linux/include/media/tveeprom.h b/linux/include/media/tveeprom.h index aa634ce89..334e64216 100644 --- a/linux/include/media/tveeprom.h +++ b/linux/include/media/tveeprom.h @@ -1,18 +1,22 @@ /* - * $Id: tveeprom.h,v 1.3 2005/07/21 21:53:54 mkrufky Exp $ + * $Id: tveeprom.h,v 1.4 2005/08/30 05:11:41 mchehab Exp $ */ struct tveeprom { u32 has_radio; + u32 has_ir; /* 0: no IR, 1: IR present, 2: unknown */ u32 tuner_type; u32 tuner_formats; + u32 tuner2_type; + u32 tuner2_formats; + u32 digitizer; u32 digitizer_formats; u32 audio_processor; - /* a_p_fmts? */ + u32 decoder_processor; u32 model; u32 revision; @@ -20,7 +24,7 @@ struct tveeprom { char rev_str[5]; }; -void tveeprom_hauppauge_analog(struct tveeprom *tvee, +void tveeprom_hauppauge_analog(struct i2c_client *c, struct tveeprom *tvee, unsigned char *eeprom_data); int tveeprom_read(struct i2c_client *c, unsigned char *eedata, int len); |