diff options
author | Patrick Boettcher <pb@linuxtv.org> | 2006-09-19 12:51:40 -0300 |
---|---|---|
committer | Patrick Boettcher <pb@linuxtv.org> | 2006-09-19 12:51:40 -0300 |
commit | d6e3c1d9036faa5f183ea1864e55a323c0498d8d (patch) | |
tree | e6e64c61528ca3476a7e70a97027cebe20143caa /linux/drivers/media/dvb/dvb-usb/dib0700.h | |
parent | 9a0142aef97ddb0d8608df27ce99b4ffb1af2506 (diff) | |
download | mediapointer-dvb-s2-d6e3c1d9036faa5f183ea1864e55a323c0498d8d.tar.gz mediapointer-dvb-s2-d6e3c1d9036faa5f183ea1864e55a323c0498d8d.tar.bz2 |
Hauppauge Nova-T 500 support added
From: Patrick Boettcher <pb@linuxtv.org>
This changeset finalizes the support of the Hauppauge Nova-T 500 (Dual DVB-T).
It adds correct AGC setting for the 3000P, correct firmware download state
detection.
Additionally it fixes the mt2060-driver to be able to be used with dvb_attach.
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/dvb-usb/dib0700.h')
-rw-r--r-- | linux/drivers/media/dvb/dvb-usb/dib0700.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/dvb-usb/dib0700.h b/linux/drivers/media/dvb/dvb-usb/dib0700.h index a2cd6970f..ac84347f9 100644 --- a/linux/drivers/media/dvb/dvb-usb/dib0700.h +++ b/linux/drivers/media/dvb/dvb-usb/dib0700.h @@ -32,13 +32,15 @@ extern int dvb_usb_dib0700_debug; struct dib0700_state { u8 channel_state; - u8 mt2060_if1[2]; + u16 mt2060_if1[2]; }; extern int dib0700_set_gpio(struct dvb_usb_device *, enum dib07x0_gpios gpio, u8 gpio_dir, u8 gpio_val); extern int dib0700_download_firmware(struct usb_device *udev, const struct firmware *fw); extern int dib0700_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff); extern struct i2c_algorithm dib0700_i2c_algo; +extern int dib0700_identify_state(struct usb_device *udev, struct dvb_usb_device_properties *props, + struct dvb_usb_device_description **desc, int *cold); extern int dib0700_device_count; extern struct dvb_usb_device_properties dib0700_devices[]; |